diff options
author | eph <painy.eph@gmail.com> | 2016-08-15 22:33:55 +0800 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2016-08-15 10:33:55 -0400 |
commit | 5f358c0d580bd409279cef1404e6460e7fe2156e (patch) | |
tree | 95f65ce35781d46eb84392119a7494fd646b516a /tests | |
parent | 655d1afbeec91ed0cbc57f36219dd1c7808ff47e (diff) | |
download | markdown-5f358c0d580bd409279cef1404e6460e7fe2156e.tar.gz markdown-5f358c0d580bd409279cef1404e6460e7fe2156e.tar.bz2 markdown-5f358c0d580bd409279cef1404e6460e7fe2156e.zip |
Fix table alignment when seperator contains spaces (#489)
* Fix table alignment when seperator contains spaces
eg. seperator like "------ | :----- | :----: | -----: | ------"
* Update tests for table
* Delete the newline at the end of tables.html
Diffstat (limited to 'tests')
-rw-r--r-- | tests/extensions/extra/tables.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/extensions/extra/tables.html b/tests/extensions/extra/tables.html index 783c205..b5c08be 100644 --- a/tests/extensions/extra/tables.html +++ b/tests/extensions/extra/tables.html @@ -38,21 +38,21 @@ <table> <thead> <tr> -<th>Item</th> +<th align="left">Item</th> <th align="right">Value</th> </tr> </thead> <tbody> <tr> -<td>Computer</td> +<td align="left">Computer</td> <td align="right">$1600</td> </tr> <tr> -<td>Phone</td> +<td align="left">Phone</td> <td align="right">$12</td> </tr> <tr> -<td>Pipe</td> +<td align="left">Pipe</td> <td align="right">$1</td> </tr> </tbody> |