diff options
author | Andrey Makarov <ph.makarov@gmail.com> | 2021-03-25 10:15:05 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-25 08:15:05 +0100 |
commit | 46364e63cd0c292b3a803d1975d48db73f46e8e6 (patch) | |
tree | 10dd14aefac8c71a46c676ac62d3a76e608a4cdd /tests/stdlib/trstgen.nim | |
parent | 045400ad92f98363ef8931aea29165b48d07ac16 (diff) | |
download | Nim-46364e63cd0c292b3a803d1975d48db73f46e8e6.tar.gz |
fix RST parsing after option lists (#17442)
Diffstat (limited to 'tests/stdlib/trstgen.nim')
-rw-r--r-- | tests/stdlib/trstgen.nim | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/stdlib/trstgen.nim b/tests/stdlib/trstgen.nim index d6055cc11..0f3890faa 100644 --- a/tests/stdlib/trstgen.nim +++ b/tests/stdlib/trstgen.nim @@ -1277,6 +1277,55 @@ Test1 let refline = "Ref. " & ref1 & "! and " & ref2 & ";and " & ref3 & "." doAssert refline in output1 + test "Option lists 1": + # check that "* b" is not consumed by previous bullet item because of + # incorrect indentation handling in option lists + let input = dedent """ + * a + -m desc + -n very long + desc + * b""" + let output = input.toHtml + check(output.count("<ul") == 1) + check(output.count("<li>") == 2) + check(output.count("<table") == 1) + check("""<th align="left">-m</th><td align="left">desc</td>""" in output) + check("""<th align="left">-n</th><td align="left">very long desc</td>""" in + output) + + test "Option lists 2": + # check that 2nd option list is not united with the 1st + let input = dedent """ + * a + -m desc + -n very long + desc + -d option""" + let output = input.toHtml + check(output.count("<ul") == 1) + check(output.count("<table") == 2) + check("""<th align="left">-m</th><td align="left">desc</td>""" in output) + check("""<th align="left">-n</th><td align="left">very long desc</td>""" in + output) + check("""<th align="left">-d</th><td align="left">option</td>""" in + output) + + test "Option list 3 (double /)": + let input = dedent """ + * a + //compile compile1 + //doc doc1 + cont + -d option""" + let output = input.toHtml + check(output.count("<ul") == 1) + check(output.count("<table") == 2) + check("""<th align="left">compile</th><td align="left">compile1</td>""" in output) + check("""<th align="left">doc</th><td align="left">doc1 cont</td>""" in + output) + check("""<th align="left">-d</th><td align="left">option</td>""" in + output) suite "RST/Code highlight": test "Basic Python code highlight": let pythonCode = """ |