diff options
author | John MacFarlane <jgm@berkeley.edu> | 2012-07-22 19:27:15 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2012-07-22 19:28:56 -0700 |
commit | 5a704ecc6e18543853f0cf75d59e929d7330cd5e (patch) | |
tree | 79a7c767efe2f76b5edc938e0ce2c2d1ca61ab7a /tests/extra-tables.markdown | |
parent | 511f5e891dcba126bf6159bb1f816a3d25895f00 (diff) | |
download | pandoc-5a704ecc6e18543853f0cf75d59e929d7330cd5e.tar.gz |
Renamed tests/markdown-tables -> tests/extra-tables.
Added to cabal file.
Diffstat (limited to 'tests/extra-tables.markdown')
-rw-r--r-- | tests/extra-tables.markdown | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/extra-tables.markdown b/tests/extra-tables.markdown new file mode 100644 index 000000000..69a18113b --- /dev/null +++ b/tests/extra-tables.markdown @@ -0,0 +1,34 @@ +Simplest table without caption: + +| Default1 | Default2 | Default3 | +|----------|----------|----------| +|12|12|12| +|123|123|123| +|1|1|1| + +Simple table with caption: + +| Right | Left | Default | Center | +|------:|:-----|---------|:------:| +| 12 | 12 | 12 | 12 | +| 123 | 123 | 123 | 123 | +| 1 | 1 | 1 | 1 | + + : Demonstration of simple table syntax. + +Simple table without caption: + +| Right | Left | Center | +|------:|:-----|:------:| +|12|12|12| +|123|123|123| +|1|1|1| + + +Headerless table without caption: + +|------:|:-----|:------:| +|12|12|12| +|123|123|123| +|1|1|1| + |