Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: test/original/emphasis_and_strong.unit

Issue 1340143003: Ignore underscores in the middle of words. (Closed) Base URL: https://github.com/dart-lang/markdown.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« lib/src/inline_parser.dart ('K') | « pubspec.yaml ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 >>> single asterisks 1 >>> single asterisks
2 before *em* after 2 before *em* after
3 3
4 <<< 4 <<<
5 <p>before <em>em</em> after</p> 5 <p>before <em>em</em> after</p>
6 >>> single underscores 6 >>> single underscores
7 before _em_ after 7 before _em_ after
8 8
9 <<< 9 <<<
10 <p>before <em>em</em> after</p> 10 <p>before <em>em</em> after</p>
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 >>> mismatched in nested 63 >>> mismatched in nested
64 *a _b* c_ 64 *a _b* c_
65 65
66 <<< 66 <<<
67 <p><em>a _b</em> c_</p> 67 <p><em>a _b</em> c_</p>
68 >>> cannot nest tags of same type 68 >>> cannot nest tags of same type
69 *a _b *c* d_ e* 69 *a _b *c* d_ e*
70 70
71 <<< 71 <<<
72 <p><em>a _b </em>c<em> d_ e</em></p> 72 <p><em>a _b </em>c<em> d_ e</em></p>
73 >>> in the middle of a word
74 a_b_c a__b__c a*b*c a**b**c
75 <<<
76 <p>a_b_c a__b__c a<em>b</em>c a<strong>b</strong>c</p>
77 >>> prefixing a word
78 _a_b __a__b *a*b **a**b
79 <<<
80 <p>_a_b __a__b <em>a</em>b <strong>a</strong>b</p>
81 >>> suffixing a word
82 a_b_ a__b__ a*b* a**b**
83 <<<
84 <p>a_b_ a__b__ a<em>b</em> a<strong>b</strong></p>
85 >>> spanning words
86 _a_b c_d_ __a__b c__d__ *a*b c*d* **a**b c**d**
87 <<<
88 <p><em>a_b c_d</em> <strong>a__b c__d</strong> <em>a</em>b c<em>d</em> <strong>a </strong>b c<strong>d</strong></p>
OLDNEW
« lib/src/inline_parser.dart ('K') | « pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698