diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2017-05-10 23:35:45 +0200 |
---|---|---|
committer | Albert Krewinkel <albert+github@zeitkraut.de> | 2017-05-11 00:17:56 +0200 |
commit | 4b9fb7a1280f1d923a6bcecbf42a496480020359 (patch) | |
tree | 45438deecb7439995755b9934598c554112457c6 /test/command | |
parent | 7bdf38ef2eb39e552a0825436dc8bdfa5507e245 (diff) | |
download | pandoc-4b9fb7a1280f1d923a6bcecbf42a496480020359.tar.gz |
Combine grid table parsers
The grid table parsers for markdown and rst was combined into one single
parser, slightly changing parsing behavior of both parsers:
- The markdown parser now compactifies block content cell-wise: pure
text blocks in cells are now treated as paragraphs only if the cell
contains multiple paragraphs, and as plain blocks otherwise. Before,
this was true only for single-column tables.
- The rst parser now accepts newlines and multiple blocks in header
cells.
Closes: #3638
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/3516.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/command/3516.md b/test/command/3516.md index 982043874..8c7e478d3 100644 --- a/test/command/3516.md +++ b/test/command/3516.md @@ -27,8 +27,8 @@ on Windows builds. [Table [] [AlignDefault,AlignDefault] [5.555555555555555e-2,5.555555555555555e-2] [[] ,[]] - [[[Para [Str "1"]] - ,[Para [Str "2"]]] + [[[Plain [Str "1"]] + ,[Plain [Str "2"]]] ,[[] ,[]]]] ``` |