mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-19 07:21:19 +00:00
This commit is contained in:
@@ -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):
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user