We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Consider this following markdown file headings.md:
headings.md
- \# First-level heading - \#\# Second-level heading - \#\#\# Etc.
If we round trip this from JSON and back to markdown (using pandoc 2.16.2 on MacOS):
pandoc brackets.md --to json | pandoc --from json --to markdown
We get the following output:
- \# First-level heading - ## Second-level heading - ##\# Etc.
The text was updated successfully, but these errors were encountered:
This is quite strange!
% pandoc -f native -t markdown [Str "##",Space,Str "hi"] ## hi % pandoc -f native -t markdown [Str "###",Space,Str "hi"] ##\# hi
Sorry, something went wrong.
This is due to l. 93 of T.P.Writers.Markdown.Inline, but I have to figure out why that's there!
See commit 5a6399d and #6259.
51f6f0e
Thanks!
No branches or pull requests
Consider this following markdown file
headings.md
:If we round trip this from JSON and back to markdown (using pandoc 2.16.2 on MacOS):
pandoc brackets.md --to json | pandoc --from json --to markdown
We get the following output:
The text was updated successfully, but these errors were encountered: