Bold across newline is not recognized as bold
See original GitHub issueGiven the text
"""
this is some **bold
text**
"""
When I render
Then "bold text" should be bold
# But it's not
Sorry to bother you with this @burodepeper, but do you think it can be fixed easily?
Issue Analytics
- State:
- Created 7 years ago
- Comments:11 (6 by maintainers)
Top Results From Across the Web
Bold text not aligned with next line - LaTeX Stack Exchange
What am I missing on the last part? Here is my code: Create an int variable that contains your age. Name the variable...
Read more >Can't bold on new line - Apple Community
I have to type some characters in and then bold them in order to type bold on the line.
Read more >New line is not working in Javascript [duplicate] - Stack Overflow
I am using new to add two string and second string should be in new line but \n is not working. My code...
Read more >Multiline bold or italics fail [#2502887] | Drupal.org
In my testing it's no problem getting bold or italic working over multiple lines. It does not work if the closing markdown code...
Read more >Italics & Bold not rendering properly if they are the final ...
All characters should be italicized and fully visible. Actual behavior. The last character before a newline is cut-off where the italic character would...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
To each his own. Anyway, I don’t think I can help you with this issue any further at this moment. I’m hoping they’ll use a different grammar parsing engine in 2.0.
This is exactly one of the things that’s impossible. The
match
alternative parses single lines, without a possibility of looking ahead or behind beyond that line. Thebegin
alternative can only be successfully terminated by anend
match. You can’t negate the begin-match.This approach works good enough for programming languages, because proper grammar is absolute, and because the grammar rules are rather strict. An opening
(
needs a closing)
. I have yet to come across any false-positive while programming.There are already a bunch of tests in place, a good chunk of them disabled for these reasons.