You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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:
Results in:
Which will not render in bold with most markdown interpreters.
Instead we should move trailing line breaks outside of the asterisks:
and end and re-start bold for if it's not trailing, eg:
to
The text was updated successfully, but these errors were encountered: