Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Empty table cells are skipped #105

Open
pbb72 opened this issue Sep 1, 2020 · 0 comments
Open

Empty table cells are skipped #105

pbb72 opened this issue Sep 1, 2020 · 0 comments

Comments

@pbb72
Copy link

pbb72 commented Sep 1, 2020

Wiki code:

{|
| A1 ||    || A3
|-
| B1 || B2 || B3
|}

Mediawiki output:

<table>
<tr>
<td> A1 </td>
<td>    </td>
<td> A3
</td></tr>
<tr>
<td> B1 </td>
<td> B2 </td>
<td> B3
</td></tr></table>

Wikicloth output:

<table><tbody><tr><td>
A1
</td><td>
A3
</td></tr><tr><td>
B1
</td><td>
B2
</td><td>
B3
</td></tr></tbody></table>

Note the missing empty <td> in the Wikicloth output.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants