-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Markdown: Unsupported parsing cases #133
Comments
@tiensonqin Do you have plans on change anything in mldoc? |
@stdword I think I have noticed logseq team moving functionality from mldoc into clj/cljs to be used in Logseq. Not sure if mldoc will be around in the future. |
This is not confirmed only my guess. I would wait for someone from the Logseq team to respond. |
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.
___
&---
&***
### h3 Heading
> Blockquotes can also be nested...
1. Lorem ipsum dolor sit amet
- Lorem ipsum dolor sit amet
```js
var foo = bar()
```
["Code", "` js\nvar foo = bar()\n"],
["Plain", "`"],
```var foo = bar()```
["Code", "`var foo = bar()\n"],
["Plain", "`"],
| A | B | \n | 1 | 2 |
![Logseq](https://logseq.com)
["Link", {
"full_text": "![Logseq](https://logseq.com)",
"url": ["Complex",{"protocol": "https", "link": "logseq.com"}],
"label": [ ["Plain", "Logseq"] ],
"metadata": ""}]
![Alt text][id]
With a reference later
[id]: https://dojocat.jpg "The Dojocat"
Inline footnote^[Text of inline footnote] definition.
Footnote link[^first]
[^first]: Footnote
["Footnote_Reference",{"id": 1,"name": "first"}],
["Footnote_Reference",{"id": 2,"name": "first"}],
The text was updated successfully, but these errors were encountered: