fix #11537, correct parse inline code without surrounding spaces (#15399)

This commit is contained in:
Miran
2020-09-25 09:25:47 +02:00
committed by GitHub
parent e9fa486493
commit 2de6e18774
2 changed files with 3 additions and 1 deletions

View File

@@ -13,7 +13,7 @@ Advanced commands:
//genDepend generate a DOT file containing the
module dependency graph
//dump dump all defined conditionals and search paths
see also: --dump.format:json (useful with: ` | jq`)
see also: --dump.format:json (useful with: `| jq`)
//check checks the project for syntax and semantic
Runtime checks (see -x):

View File

@@ -507,6 +507,7 @@ proc isInlineMarkupEnd(p: RstParser, markup: string): bool =
if not result:
return # Rule 4:
result = (p.tok[p.idx + 1].kind in {tkIndent, tkWhite, tkEof}) or
(markup in ["``", "`"] and p.tok[p.idx + 1].kind in {tkIndent, tkWhite, tkWord, tkEof}) or
(p.tok[p.idx + 1].symbol[0] in
{'\'', '\"', ')', ']', '}', '>', '-', '/', '\\', ':', '.', ',', ';', '!',
'?', '_'})
@@ -522,6 +523,7 @@ proc isInlineMarkupStart(p: RstParser, markup: string): bool =
if not result:
return # Rule 1:
result = (p.idx == 0) or (p.tok[p.idx - 1].kind in {tkIndent, tkWhite}) or
(markup in ["``", "`"] and p.tok[p.idx - 1].kind in {tkIndent, tkWhite, tkWord}) or
(p.tok[p.idx - 1].symbol[0] in
{'\'', '\"', '(', '[', '{', '<', '-', '/', ':', '_'})
if not result: