summaryrefslogtreecommitdiffstats
path: root/packages/markdown/marked/test/new/gfm_tables.html
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2020-03-06 03:52:12 +0200
committerLauri Ojansivu <x@xet7.org>2020-03-06 03:52:12 +0200
commit2b26bbe78a1a2b8b427963a6c44c3853efdb737e (patch)
tree90a71801d84a4c0a019e072a953299bbc0a2962d /packages/markdown/marked/test/new/gfm_tables.html
parenta6d702d1ab9906898dab4cacec735043e5618fb1 (diff)
downloadwekan-2b26bbe78a1a2b8b427963a6c44c3853efdb737e.tar.gz
wekan-2b26bbe78a1a2b8b427963a6c44c3853efdb737e.tar.bz2
wekan-2b26bbe78a1a2b8b427963a6c44c3853efdb737e.zip
Fix: img tag did not allow width and height.
Removed swipebox from markdown editor img tag and updated marked markdown to newest version. Thanks to hradec and xet7 ! Closes #2956
Diffstat (limited to 'packages/markdown/marked/test/new/gfm_tables.html')
-rw-r--r--packages/markdown/marked/test/new/gfm_tables.html37
1 files changed, 0 insertions, 37 deletions
diff --git a/packages/markdown/marked/test/new/gfm_tables.html b/packages/markdown/marked/test/new/gfm_tables.html
deleted file mode 100644
index 1c596573..00000000
--- a/packages/markdown/marked/test/new/gfm_tables.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<table>
- <thead>
- <tr><th>Heading 1</th><th>Heading 2</th></tr>
- </thead>
- <tbody>
- <tr><td>Cell 1</td><td>Cell 2</td></tr>
- <tr><td>Cell 3</td><td>Cell 4</td></tr>
- </tbody>
-</table>
-<table>
- <thead>
- <tr><th align="center">Header 1</th><th align="right">Header 2</th><th align="left">Header 3</th><th>Header 4</th></tr>
- </thead>
- <tbody>
- <tr><td align="center">Cell 1</td><td align="right">Cell 2</td><td align="left">Cell 3</td><td>Cell 4</td></tr>
- <tr><td align="center">Cell 5</td><td align="right">Cell 6</td><td align="left">Cell 7</td><td>Cell 8</td></tr>
- </tbody>
-</table>
-<pre><code>Test code</code></pre>
-<table>
- <thead>
- <tr><th>Header 1</th><th>Header 2</th></tr>
- </thead>
- <tbody>
- <tr><td>Cell 1</td><td>Cell 2</td></tr>
- <tr><td>Cell 3</td><td>Cell 4</td></tr>
- </tbody>
-</table>
-<table>
- <thead>
- <tr><th align="left">Header 1</th><th align="center">Header 2</th><th align="right">Header 3</th><th>Header 4</th></tr>
- </thead>
- <tbody>
- <tr><td align="left">Cell 1</td><td align="center">Cell 2</td><td align="right">Cell 3</td><td>Cell 4</td></tr>
- <tr><td align="left"><em>Cell 5</em></td><td align="center">Cell 6</td><td align="right">Cell 7</td><td>Cell 8</td></tr>
- </tbody>
-</table>