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

Side by Side Diff: lib/src/prism/tests/languages/markdown/title_feature.test

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 1 month 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
OLDNEW
(Empty)
1 title 1
2 ==
3
4 foobar
5 ======
6
7 title 2
8 --
9
10 # title 1
11 ## title 2
12 ### title 3
13 #### title 4
14 ##### title 5
15 ###### title 6
16
17 ----------------------------------------------------
18
19 [
20 ["title", ["title 1\r\n", ["punctuation", "=="]]],
21 ["title", ["foobar\r\n", ["punctuation", "======"]]],
22 ["title", ["title 2\r\n", ["punctuation", "--"]]],
23
24 ["title", [["punctuation", "#"], " title 1"]],
25 ["title", [["punctuation", "##"], " title 2"]],
26 ["title", [["punctuation", "###"], " title 3"]],
27 ["title", [["punctuation", "####"], " title 4"]],
28 ["title", [["punctuation", "#####"], " title 5"]],
29 ["title", [["punctuation", "######"], " title 6"]]
30 ]
31
32 ----------------------------------------------------
33
34 Checks for titles.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698