Skip to content

Commit

Permalink
Fix table bug
Browse files Browse the repository at this point in the history
Signed-off-by: Miek Gieben <[email protected]>
  • Loading branch information
miekg committed Aug 23, 2018
1 parent 609e4fe commit 3fa80e5
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
8 changes: 8 additions & 0 deletions testdata/table-codeblock.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Name | Age
--------|------
Bob | 27
Table: This is a proper table caption

~~~ sh
% cat /dev/zero
~~~
18 changes: 18 additions & 0 deletions testdata/table-codeblock.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<table><name>This is a proper table caption
</name>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>

<tbody>
<tr>
<td>Bob</td>
<td>27</td>
</tr>
</tbody>
</table>
<sourcecode type="sh">% cat /dev/zero
</sourcecode>

0 comments on commit 3fa80e5

Please sign in to comment.