e5845f33ad
* Annotate gridTable code with comments and abstract small functions * Don't wrap lines in tables when `--wrap=none`. Instead, expand cells, even if it results in cells that don't respect relative widths or surpass page column width. * This change affects RST, Markdown, and Haddock writers.
15 lines
519 B
Markdown
15 lines
519 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** |
|
|
+-------+--------------------------------------+
|
|
```
|