pandoc/test/command/4320.md
John MacFarlane 276894a2f2 RST writer: use more consistent indentation.
Previously we used an odd mix of 3- and 4-space indentation.
Now we use 3-space indentation, except for ordered lists,
where indentation must depend on the width of the list marker.

Closes #4563.
2018-04-19 13:47:16 -07:00

15 lines
514 B
Markdown

```
% pandoc -f native -t rst --wrap=none
[Table [] [AlignDefault,AlignDefault] [0.47368421052631576,0.5263157894736842]
[[Plain [Str "one"]]
,[Plain [Str "two"]]]
[[[Plain [Str "ports"]]
,[BlockQuote
[Para [Strong [Str "thisIsGoingToBeTooLongAnyway"]]]]]]]
^D
+-------+-------------------------------------+
| one | two |
+=======+=====================================+
| ports | **thisIsGoingToBeTooLongAnyway** |
+-------+-------------------------------------+
```