Skip to content

Commit 7f948ec

Browse files
author
那里好脏不可以
authoredMay 3, 2020
pug: Improved class and id detection in tags (#2358)
1 parent c932447 commit 7f948ec

File tree

3 files changed

+24
-6
lines changed

3 files changed

+24
-6
lines changed
 

‎components/prism-pug.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,9 @@
130130
}
131131
}
132132
],
133-
'punctuation': /:/
133+
'punctuation': /:/,
134+
'attr-id': /#[\w\-]+/,
135+
'attr-class': /\.[\w\-]+/
134136
}
135137
},
136138
'code': [

‎components/prism-pug.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tests/languages/pug/tag_feature.test

+20-4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ a.button
1313
a#main-link
1414
#content
1515

16+
div#test-id.test-class1.test-class2
17+
.test-class1#test-id.test-class2
18+
1619
a: span
1720

1821
----------------------------------------------------
@@ -83,10 +86,23 @@ a: span
8386
]]
8487
]],
8588

86-
["tag", ["a.button"]],
87-
["tag", [".content"]],
88-
["tag", ["a#main-link"]],
89-
["tag", ["#content"]],
89+
["tag", [
90+
"a",
91+
["attr-class", ".button"]]],
92+
["tag", [["attr-class", ".content"]]],
93+
["tag", [
94+
"a",
95+
["attr-id", "#main-link"]]],
96+
["tag", [["attr-id", "#content"]]],
97+
["tag", [
98+
"div",
99+
["attr-id", "#test-id"],
100+
["attr-class", ".test-class1"],
101+
["attr-class", ".test-class2"]]],
102+
["tag", [
103+
["attr-class", ".test-class1"],
104+
["attr-id", "#test-id"],
105+
["attr-class", ".test-class2"]]],
90106

91107
["tag", ["a", ["punctuation", ":"]]],
92108
["tag", ["span"]]

0 commit comments

Comments
 (0)