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

Line breaks in bold renders incorrect markdown #151

Open
dmauro opened this issue Feb 7, 2017 · 2 comments
Open

Line breaks in bold renders incorrect markdown #151

dmauro opened this issue Feb 7, 2017 · 2 comments
Labels

Comments

@dmauro
Copy link

dmauro commented Feb 7, 2017

Bold generally should not be allowed to have line breaks in between them, or have whitespace on the inside, or they'll be treated as literal asterisks. So for example:

<b>Our bold text<br /></b>

Results in:

**Our bold text\n  **

Which will not render in bold with most markdown interpreters.

Instead we should move trailing line breaks outside of the asterisks:

**Our bold text**\n  

and end and re-start bold for if it's not trailing, eg:

<b>Our multiline<br />bold text</b>

to

**Our multiline**\n  **bold text**
  • Version by 2016.9.19
  • Python version 2.7.6
@l3d00m
Copy link

l3d00m commented Feb 17, 2017

Seems to be at least similiar to #142

@lolobosse
Copy link

I'm facing this very same issue, any status update on that?

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

No branches or pull requests

4 participants