Skip to content

Commit a7656de

Browse files
reST: Fixed inline pattern (#2946)
1 parent b4ac061 commit a7656de

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

components/prism-rest.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Prism.languages.rest = {
139139

140140
'inline': [
141141
{
142-
pattern: /(^|[\s\-:\/'"<(\[{])(?::[^:]+:`.*?`|`.*?`:[^:]+:|(\*\*?|``?|\|)(?!\s).*?\S\2(?=[\s\-.,:;!?\\\/'")\]}]|$))/m,
142+
pattern: /(^|[\s\-:\/'"<(\[{])(?::[^:]+:`.*?`|`.*?`:[^:]+:|(\*\*?|``?|\|)(?!\s)(?:(?!\2).)*\S\2(?=[\s\-.,:;!?\\\/'")\]}]|$))/m,
143143
lookbehind: true,
144144
inside: {
145145
'bold': {

components/prism-rest.min.js

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

tests/languages/rest/issue2940.test

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
`ALTER ROLE <https://www.postgresql.org/docs/12/sql-alterrole.html>`_ or ``ALTER_ROLE``
2+
3+
`ALTER ROLE <https://www.postgresql.org/docs/12/sql-alterrole.html>`_
4+
or ``ALTER_ROLE``
5+
6+
----------------------------------------------------
7+
8+
[
9+
["link", [
10+
["punctuation", "`"],
11+
"ALTER ROLE <https://www.postgresql.org/docs/12/sql-alterrole.html>",
12+
["punctuation", "`_"]
13+
]],
14+
" or ",
15+
["inline", [
16+
["punctuation", "``"],
17+
["inline-literal", "ALTER_ROLE"],
18+
["punctuation", "``"]
19+
]],
20+
21+
["link", [
22+
["punctuation", "`"],
23+
"ALTER ROLE <https://www.postgresql.org/docs/12/sql-alterrole.html>",
24+
["punctuation", "`_"]
25+
]],
26+
27+
"\nor ",
28+
["inline", [
29+
["punctuation", "``"],
30+
["inline-literal", "ALTER_ROLE"],
31+
["punctuation", "``"]
32+
]]
33+
]

0 commit comments

Comments
 (0)