Skip to content

Commit 37273a6

Browse files
authoredJun 21, 2020
Dockerfile: Fixed strings inside comments (#2428)
Strings inside comments broke comments. Comments are now greedy, so this can't happen anymore.
1 parent ff74a61 commit 37273a6

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed
 

‎components/prism-docker.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ Prism.languages.docker = {
44
lookbehind: true
55
},
66
'string': /("|')(?:(?!\1)[^\\\r\n]|\\(?:\r\n|[\s\S]))*\1/,
7-
'comment': /#.*/,
7+
'comment': {
8+
pattern: /#.*/,
9+
greedy: true
10+
},
811
'punctuation': /---|\.\.\.|[:[\]{}\-,|>?]/
912
};
1013

‎components/prism-docker.min.js

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

‎examples/prism-docker.html

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ <h2>Comments</h2>
22
<pre><code># These are the comments for a dockerfile.
33
# I want to make sure $(variables) don't break out,
44
# and we shouldn't see keywords like ADD or ENTRYPOINT
5+
6+
# I also want to make sure that this "string" and this 'string' don't break out.
57
</code></pre>
68

79
<h2>Full example</h2>

‎tests/languages/docker/comment_feature.test

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
#
22
# foobar
3+
# "foo" 'bar'
34

45
----------------------------------------------------
56

67
[
78
["comment", "#"],
8-
["comment", "# foobar"]
9+
["comment", "# foobar"],
10+
["comment", "# \"foo\" 'bar'"]
911
]
1012

1113
----------------------------------------------------

0 commit comments

Comments
 (0)
Please sign in to comment.