Closed GoogleCodeExporter closed 8 years ago
Further details:
In the current implementation, an italic/bold phrase has to be surrounded by
[\W_] characters (including * and _), which means *b* is considered as bold
instead of an intra-word pattern to be ignored when found in a**b**c (just like
a__b__c). The correction is to replace [\W_] by [^\w*] in order to exclude *
and _.
The other issue in the current implementation is that the previous and the next
characters are both recorded as groups in the regular expressions, which makes
it impossible to have two italic/bold phrases separated by only one character.
For instance, *a* *b* won't work, and it's also problematic with non ASCII
characters: https://github.com/benweet/stackedit/issues/243
The second correction here is just to replace the last capturing group by a
positive lookahead.
Original comment by benoit.schweblin@gmail.com
on 6 Jan 2014 at 5:39
Deviating from the spec w.r.t. the "no intra-word styling" was a conscious
decision by us (and many other Markdown implementations); see
http://stackoverflow.com/a/10310136/115866.
The other issue you mention in your comment is fixed in
https://code.google.com/p/pagedown/source/detail?r=ec83ecf78c0c01ab8725c0b9614b9
af6c4f6ecf5.
Original comment by b...@stackoverflow.com
on 11 Apr 2014 at 8:31
I think you are missing the first point. Your implementation does not comply to
"no intra-word styling".
abc__def__ghi is supposed to give <p>abc__def__ghi</p> as on GitHub.
Your implementation gives <p>abc_<em>def</em>_ghi</p>.
Original comment by benoit.schweblin@gmail.com
on 11 Apr 2014 at 8:54
Oh yeah, I misread that indeed. I'll look at it. Thanks for being insistent :)
Original comment by b...@stackoverflow.com
on 11 Apr 2014 at 9:28
I couldn't use your version because it breaks various other things (notably
around newlines). However I have totally reworked the bold/italics regexes, and
this change also fixes this issue.
Changeset:
https://code.google.com/p/pagedown/source/detail?r=39afe9b2d865cce8e1aa065221525
9167169006c
More info: http://meta.stackoverflow.com/a/229236/115866
Original comment by b...@stackoverflow.com
on 12 Apr 2014 at 6:52
Original issue reported on code.google.com by
benoit.schweblin@gmail.com
on 27 Dec 2013 at 6:27