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

Bug | footer inside blockquote #302

Open
captainhusaynpenguin opened this issue Apr 1, 2018 · 1 comment
Open

Bug | footer inside blockquote #302

captainhusaynpenguin opened this issue Apr 1, 2018 · 1 comment

Comments

@captainhusaynpenguin
Copy link

captainhusaynpenguin commented Apr 1, 2018

when writing something like this:

> my blockquote
> 
> <footer>a footer for reference</footer>

I expect something like this:

<blockquote>
<p>my blockquote</p>
<footer>a footer for reference</footer>
</blockquote>

However what I get is something like this:

<blockquote>
<p>my blockquote</p>
</blockquote>
<footer>a footer for reference</footer>

Actually this works well in erusev/parsedown-extra but there other features fail ... I'm using the Extra version on iba and you can view a live result here

Thanks for considering this bug in advance

@michelf
Copy link
Owner

michelf commented Apr 1, 2018

Definitely a bug. It's also intriguing that the plain Markdown parser parses this correctly, but not MarkdownExtra. I'll need to investigate.

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

2 participants