-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Description
Mldoc cannot parse following cases (but several of them successfully displays in Logseq).
But it is required to be done with mldoc to use this parser in plugin development separately from Logseq.
| case | markdown | parsed as |
|---|---|---|
| horizontal line | ___ & --- & *** |
plain |
| headings | ### h3 Heading |
plain |
| blockquotes | > Blockquotes can also be nested... |
plain |
| numbered lists | 1. Lorem ipsum dolor sit amet |
plain |
| unordered lists | - Lorem ipsum dolor sit amet |
plain |
| code block | ```js var foo = bar() ``` |
["Code", "` js\nvar foo = bar()\n"], ["Plain", "`"], |
| inline code | ```var foo = bar()``` |
["Code", "`var foo = bar()\n"], ["Plain", "`"], |
| table | | A | B | \n | 1 | 2 | |
plain |
| inclusion url metadata not presented |  |
["Link", { "full_text": "", "url": ["Complex",{"protocol": "https", "link": "logseq.com"}], "label": [ ["Plain", "Logseq"] ], "metadata": ""}] |
| reference by id | ![Alt text][id] With a reference later [id]: https://dojocat.jpg "The Dojocat" |
plain |
| inline footnote | Inline footnote^[Text of inline footnote] definition. |
plain |
| footnotes with bug in id assignment | Footnote link[^first] [^first]: Footnote |
["Footnote_Reference",{"id": 1,"name": "first"}], ["Footnote_Reference",{"id": 2,"name": "first"}], |
Metadata
Metadata
Assignees
Labels
No labels