Exploring the ins and outs of special Markdown characters in Astro

Escaping Markdown Characters in Astro

astro
markdown

Written by: Sarah Rainsberger on 2021-08-12

Here is a list of the characters that may need to be escaped with the \ character according to MarkdownGuide.org:

\ ` * _ { } [ ] < > ( ) # + - . ! |

Characters that must be escaped:

  1. The single backtick:
  `
  1. The left curly brace: {

Fun fact! Astro can’t actually render this character at all yet! This pull request will fix that, by the time you read this. Thanks Jon! ;)


Characters that can render without escaping, but only if they do not appear in a position where they’d usually have a “function” in Markdown:

astro
markdown

See more posts ...