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
Another parse->render loop newline issue. This one actually changes the output.
MWE:
import mistune from mistune.core import BlockState from mistune.renderers.markdown import MarkdownRenderer # format_markdown = mistune.create_markdown(renderer=MarkdownRenderer()) markdown = mistune.create_markdown(renderer="ast") md = "> #### Lorem\n> Ipsum" tokens = markdown(md) # from rich import print # print(tokens) renderer = MarkdownRenderer() print() print(renderer(tokens, state=BlockState()))
Output:
> #### Lorem > Ipsum
The text was updated successfully, but these errors were encountered:
The cause is an incorrect application of textwrap.indent. Behold
textwrap.indent
indent("a\n\nb", '> ')
'> a\n\n> b'
Sorry, something went wrong.
No branches or pull requests
Another parse->render loop newline issue. This one actually changes the output.
MWE:
Output:
The text was updated successfully, but these errors were encountered: