Skip to content

Commit

Permalink
RST opt.list to have priority over def.list
Browse files Browse the repository at this point in the history
  • Loading branch information
a-mr committed Apr 28, 2021
1 parent d881a05 commit a2a98f5
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/packages/docutils/rst.nim
Original file line number Diff line number Diff line change
Expand Up @@ -1831,10 +1831,10 @@ proc whichSection(p: RstParser): RstNodeKind =
elif match(p, p.idx, "(e) ") or match(p, p.idx, "e) ") or
match(p, p.idx, "e. "):
result = rnEnumList
elif isDefList(p):
result = rnDefList
elif isOptionList(p):
result = rnOptionList
elif isDefList(p):
result = rnDefList
else:
result = rnParagraph
of tkWord, tkOther, tkWhite:
Expand Down
26 changes: 26 additions & 0 deletions tests/stdlib/trst.nim
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
discard """
output: '''
[Suite] RST parsing
[Suite] RST indentation
[Suite] RST include directive
Expand Down Expand Up @@ -51,6 +53,30 @@ proc toAst(input: string,
except EParseError:
discard

suite "RST parsing":
test "option list has priority over definition list":
check(dedent"""
--defusages
file
-o set
""".toAst ==
dedent"""
rnOptionList
rnOptionListItem order=1
rnOptionGroup
rnLeaf '--'
rnLeaf 'defusages'
rnDescription
rnInner
rnLeaf 'file'
rnOptionListItem order=2
rnOptionGroup
rnLeaf '-'
rnLeaf 'o'
rnDescription
rnLeaf 'set'
""")

suite "RST indentation":
test "nested bullet lists":
let input = dedent """
Expand Down

0 comments on commit a2a98f5

Please sign in to comment.