From 02cbe9d683fcc40e02604f3b87774fc9a6752ecf Mon Sep 17 00:00:00 2001 From: Luiz Chaves Date: Mon, 21 Oct 2024 07:43:33 -0300 Subject: [PATCH] fix: html entities --- src/content/classnotes/html/introduction/index.mdx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/content/classnotes/html/introduction/index.mdx b/src/content/classnotes/html/introduction/index.mdx index 30649ba..725dc45 100644 --- a/src/content/classnotes/html/introduction/index.mdx +++ b/src/content/classnotes/html/introduction/index.mdx @@ -231,13 +231,13 @@ Referência: ### Entidades do HTML -| Caracter | Descrição | Nome | Número | -| -------- | -------------- | ------ | ------ | -| \" | quotation mark | " | " | -| \' | apostrophe | ' | ' | -| \& | ampersand | & | & | -| \< | less-than | < | < | -| \> | greater-than | > | > | +| Caracter | Descrição | Nome | Número | +| -------- | -------------- | ---------- | ---------- | +| \" | quotation mark | &quot; | &#34; | +| \' | apostrophe | &apos; | &#39; | +| \& | ampersand | &amp; | &#38; | +| \< | less-than | &lt; | &#60; | +| \> | greater-than | &gt; | &#62; | Referências: