diff options
author | Artem Yunusov <nedrlab@gmail.com> | 2008-08-02 13:53:06 +0500 |
---|---|---|
committer | Artem Yunusov <nedrlab@gmail.com> | 2008-08-02 13:53:06 +0500 |
commit | 495578c86f58b9a84d8583825768a84eebdd8a9f (patch) | |
tree | 9d0c7129df85ccc71c4b3673a89aa2de7fa09e49 /tests/extensions-x-tables/tables.html | |
parent | e54a1868b38c53073eb54df313962a105819b03e (diff) | |
parent | 6a63cadc9a7738c9495bb1eec435908a11fec469 (diff) | |
download | markdown-495578c86f58b9a84d8583825768a84eebdd8a9f.tar.gz markdown-495578c86f58b9a84d8583825768a84eebdd8a9f.tar.bz2 markdown-495578c86f58b9a84d8583825768a84eebdd8a9f.zip |
Merge git://gitorious.org/python-markdown/mainline
Conflicts:
markdown.py
mdx_rss.py
Diffstat (limited to 'tests/extensions-x-tables/tables.html')
-rw-r--r-- | tests/extensions-x-tables/tables.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/extensions-x-tables/tables.html b/tests/extensions-x-tables/tables.html new file mode 100644 index 0000000..fad47b2 --- /dev/null +++ b/tests/extensions-x-tables/tables.html @@ -0,0 +1,30 @@ + +<p>Before +</p> +<table><tr> +<td> a </td> +<th> b </th> +</tr><tr> +<td> <a href="#">c</a> </td> +<td> <em>d</em> </td> +</tr></table><p>Another +</p> +<table><tr> +<td> a </td> +<td> b </td> +</tr><tr> +<td> <em>a</em> </td> +<td> b </td> +</tr><tr> +<td> a </td> +<td> b </td> +</tr><tr> +<td> a </td> +<td> b </td> +</tr><tr> +<td> c </td> +<td> <em>d</em> </td> +</tr></table><p>After +</p> + + |