Skip to content

Commit

Permalink
fix: html entities
Browse files Browse the repository at this point in the history
  • Loading branch information
luizchaves committed Oct 21, 2024
1 parent ac747d8 commit 02cbe9d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/content/classnotes/html/introduction/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -231,13 +231,13 @@ Referência:

### Entidades do HTML

| Caracter | Descrição | Nome | Número |
| -------- | -------------- | ------ | ------ |
| \" | quotation mark | " | " |
| \' | apostrophe | ' | ' |
| \& | ampersand | & | & |
| \< | less-than | &lt; | &#60; |
| \> | greater-than | &gt; | &#62; |
| Caracter | Descrição | Nome | Número |
| -------- | -------------- | ---------- | ---------- |
| \" | quotation mark | &amp;quot; | &amp;#34; |
| \' | apostrophe | &amp;apos; | &amp;#39; |
| \& | ampersand | &amp;amp; | &amp;#38; |
| \< | less-than | &amp;lt; | &amp;#60; |
| \> | greater-than | &amp;gt; | &amp;#62; |

Referências:

Expand Down

0 comments on commit 02cbe9d

Please sign in to comment.