Error parsing MDX:
[next-mdx-remote] error compiling MDX:
Unexpected character `!` (U+0021) before name, expected a character that can start a name, such as a letter, `$`, or `_` (note: to create a comment in MDX, use `{/* text */}`)
13 | | Strikethrough | 1. `~~text~~`<br>2. `<s>text</s>`<br>3. `<del>text</del>` | 1. ~~text~~<br>2. <s>text</s><br>3. <del>text</del> | 1. any text between `~~ ~~` will be strikethroughed<br>2 + 3. [[#HTML syntax]] |
14 | | Title | 1. `$$this~~is~~Title$$`<br>2. `$$this is Title$$`<br>3. `<center>This is Title</center>` | 1. $$this~~is~~Title$$<br>2. $$this is Title$$<br>3. <center>This is Title</center> | 1 & 2. any text between `$$ $$` will be centered and italic<br>1. Use `~` to make space between words<br>3. [[#HTML syntax]] |
> 15 | | Comment | 1. `%%text%%`<br>2. `<!--text-->` | 1. %%text%%<br>2. <!--text--> | 1. any text between `%% %%` will be hidden. Only visible in Editing mode<br>2. [[#HTML syntax]] |
| ^
16 | | Combined multiple formats | `==***text***==` | ==***text***== | this example combined bold, italic and highlight together |
17 | | Inline code | 1. ``text``<br>2. `<code>text</code>` | 1. `text`<br>2. <code>text</code> | 1. any text between `` `` will not be rendered as it should be<br>2. [[#HTML syntax]] |
More information: https://mdxjs.com/docs/troubleshooting-mdx