Skip to content

Commit d17ea6c

Browse files
committed
fix: Escape syntax examples in playground table
Wrap _text_ and *text* in backticks so they display literally instead of being rendered as emphasis/strong formatting.
1 parent fd6867e commit d17ea6c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/.vitepress/components/DjotPlayground.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ echo $converter->convert($djot);
2828
2929
| Feature | Djot | Markdown |
3030
|---------|------|----------|
31-
| Emphasis | _text_ | *text* |
32-
| Strong | *text* | **text** |
31+
| Emphasis | \`_text_\` | \`*text*\` |
32+
| Strong | \`*text*\` | \`**text**\` |
3333
`)
3434
3535
const htmlOutput = ref('')

0 commit comments

Comments
 (0)