diff options
author | claremacrae <github@cfmacrae.fastmail.co.uk> | 2013-08-17 08:48:29 +0100 |
---|---|---|
committer | claremacrae <github@cfmacrae.fastmail.co.uk> | 2013-08-17 08:48:29 +0100 |
commit | eb4fe5e82c65b5dc2f5689e4b1bceff0179397b5 (patch) | |
tree | 540a9e9dbdc385b812f2d07dba515b6fd1fa8c6b /tests/tables.dokuwiki | |
parent | 48645a47555dd5c243f5d28f9c8274b368917856 (diff) | |
download | pandoc-eb4fe5e82c65b5dc2f5689e4b1bceff0179397b5.tar.gz |
Implement table headings in dokuwiki writer (#386)
Diffstat (limited to 'tests/tables.dokuwiki')
-rw-r--r-- | tests/tables.dokuwiki | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/tables.dokuwiki b/tests/tables.dokuwiki index 0a1b0a4ff..4fcae4e6f 100644 --- a/tests/tables.dokuwiki +++ b/tests/tables.dokuwiki @@ -1,14 +1,14 @@ Simple table with caption: Demonstration of simple table syntax. -| Right | Left | Center | Default | +^ Right ^ Left ^ Center ^ Default ^ | 12 | 12 | 12 | 12 | | 123 | 123 | 123 | 123 | | 1 | 1 | 1 | 1 | Simple table without caption: -| Right | Left | Center | Default | +^ Right ^ Left ^ Center ^ Default ^ | 12 | 12 | 12 | 12 | | 123 | 123 | 123 | 123 | | 1 | 1 | 1 | 1 | @@ -16,7 +16,7 @@ Simple table without caption: Simple table indented two spaces: Demonstration of simple table syntax. -| Right | Left | Center | Default | +^ Right ^ Left ^ Center ^ Default ^ | 12 | 12 | 12 | 12 | | 123 | 123 | 123 | 123 | | 1 | 1 | 1 | 1 | @@ -24,13 +24,13 @@ Demonstration of simple table syntax. Multiline table with caption: Here's the caption. It may span multiple lines. -| Centered Header | Left Aligned | Right Aligned | Default aligned | +^ Centered Header ^ Left Aligned ^ Right Aligned ^ Default aligned ^ | First | row | 12.0 | Example of a row that spans multiple lines. | | Second | row | 5.0 | Here's another one. Note the blank line between rows. | Multiline table without caption: -| Centered Header | Left Aligned | Right Aligned | Default aligned | +^ Centered Header ^ Left Aligned ^ Right Aligned ^ Default aligned ^ | First | row | 12.0 | Example of a row that spans multiple lines. | | Second | row | 5.0 | Here's another one. Note the blank line between rows. | |