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
Case 1
let input = `- 1 - |fruit|price| - 3`; let output = djot.renderDjot(djot.parse(input));
where output becomes
- 1 - |fruit|price| - 3
Notice how the 3 got indented again. In that example, making the list loose fixes the problem.
Case 2 input:
- simple text - simple text - |1|2| - |fruit|price| |---|--:| |apple|4| |banana|10|
when parsed and transformed (djot.renderDjot(djot.parse(input)))
djot.renderDjot(djot.parse(input))
becomes
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Case 1
where output becomes
Notice how the 3 got indented again. In that example, making the list loose fixes the problem.
Case 2
input:
when parsed and transformed (
djot.renderDjot(djot.parse(input))
)becomes
The text was updated successfully, but these errors were encountered: