Skip to content
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

parse -> render loop causes newlines within quote blocks #368

Open
nschloe opened this issue Nov 20, 2023 · 1 comment
Open

parse -> render loop causes newlines within quote blocks #368

nschloe opened this issue Nov 20, 2023 · 1 comment

Comments

@nschloe
Copy link

nschloe commented Nov 20, 2023

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
@nschloe
Copy link
Author

nschloe commented Nov 20, 2023

The cause is an incorrect application of textwrap.indent. Behold

indent("a\n\nb", '> ')
'> a\n\n> b'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant