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 creates extra newlines after headings #367

Open
nschloe opened this issue Nov 20, 2023 · 0 comments
Open

parse -> render loop creates extra newlines after headings #367

nschloe opened this issue Nov 20, 2023 · 0 comments

Comments

@nschloe
Copy link

nschloe commented Nov 20, 2023

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\nipsum"
tokens = markdown(md)

from rich import print
print(tokens)

renderer = MarkdownRenderer()
print()
print(repr(renderer(tokens, state=BlockState())))

Output:

[
    {
        'type': 'heading',
        'attrs': {'level': 2},
        'style': 'axt',
        'children': [{'type': 'text', 'raw': 'Lorem'}]
    },
    {'type': 'paragraph', 'children': [{'type': 'text', 'raw': 'ipsum'}]}
]
'## Lorem\n\nipsum\n'

Expected output:

'## Lorem\nipsum\n'
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