From 14b997d9350b3ee3f6d67fb12b470bf406d4a31b Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sun, 18 Jan 2015 10:41:54 -0800 Subject: Changed rule for `_` emphasis and strong emphasis. To prevent intra-word emphasis, we used to check to see if the delimiter was followed/preceded by an ASCII alphanumeric. We now do something more elegant: whereas an opening `*` must be left-flanking, an opening `_` must be left-flanking *and not right-flanking*. And so on for the other cases. All the original tests passed except some tests with Russian text with internal `_`, which formerly created emphasis but no longer do with the new rule. These tests have been adjusted. A few new test cases have been added to illustrate the rule. The C and JS implementations have both been updated. --- spec.txt | 40 ++++++++++++++++++++++++++++------------ 1 file changed, 28 insertions(+), 12 deletions(-) (limited to 'spec.txt') diff --git a/spec.txt b/spec.txt index 6df9078..2366163 100644 --- a/spec.txt +++ b/spec.txt @@ -4547,28 +4547,28 @@ The following rules define emphasis and strong emphasis: 2. A single `_` character [can open emphasis] iff it is part of a [left-flanking delimiter run] - and is not preceded by an ASCII alphanumeric character. + and not part of a [right-flanking delimiter run]. 3. A single `*` character [can close emphasis](@can-close-emphasis) iff it is part of a [right-flanking delimiter run]. 4. A single `_` character [can close emphasis] - iff it is part of a [right-flanking delimiter run]. - and it is not followed by an ASCII alphanumeric character. + iff it is part of a [right-flanking delimiter run] + and not part of a [left-flanking delimiter run]. 5. A double `**` [can open strong emphasis](@can-open-strong-emphasis) iff it is part of a [left-flanking delimiter run]. 6. A double `__` [can open strong emphasis] iff it is part of a [left-flanking delimiter run] - and is not preceded by an ASCII alphanumeric character. + and not part of a [right-flanking delimiter run]. 7. A double `**` [can close strong emphasis](@can-close-strong-emphasis) iff it is part of a [right-flanking delimiter run]. 8. A double `__` [can close strong emphasis] iff it is part of a [right-flanking delimiter run] - and is not followed by an ASCII alphanumeric character. + and not part of a [left-flanking delimiter run]. 9. Emphasis begins with a delimiter that [can open emphasis] and ends with a delimiter that [can close emphasis], and that uses the same @@ -4701,7 +4701,7 @@ a_"foo"_

a_"foo"_

. -Emphasis with `_` is not allowed inside ASCII words: +Emphasis with `_` is not allowed inside words: . foo_bar_ @@ -4715,12 +4715,28 @@ foo_bar_

5_6_78

. -But it is permitted inside non-ASCII words: - . пристаням_стремятся_ . -

пристанямстремятся

+

пристаням_стремятся_

+. + +Here `_` does not generate emphasis, because the first delimiter run +is right-flanking and the second left-flanking: + +. +aa_"bb"_cc +. +

aa_"bb"_cc

+. + +Here there is no emphasis, because the delimiter runs are +both left- and right-flanking: + +. +"aa"_"bb"_"cc" +. +

"aa"_"bb"_"cc"

. Rule 3: @@ -4810,7 +4826,7 @@ _foo_bar . _пристаням_стремятся . -

пристанямстремятся

+

_пристаням_стремятся

. . @@ -4897,7 +4913,7 @@ foo__bar__ . пристаням__стремятся__ . -

пристанямстремятся

+

пристаням__стремятся__

. . @@ -5000,7 +5016,7 @@ __foo__bar . __пристаням__стремятся . -

пристанямстремятся

+

__пристаням__стремятся

. . -- cgit v1.2.3