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

Rowspan greater than 2 does not render to table #21

Open
grzegorz69 opened this issue May 21, 2015 · 0 comments
Open

Rowspan greater than 2 does not render to table #21

grzegorz69 opened this issue May 21, 2015 · 0 comments

Comments

@grzegorz69
Copy link

|/3. !/img/carver.jpeg(the image)! | r1 c2 |
| *r2 c2* |
| *r3 c2* |

Is producing html:

<p>|/3. <img src="/img/carver.jpeg" alt="the image" /> | r1 c2 |<br />
| <strong>r2 c2</strong> |<br />
| <strong>r3 c2</strong> |</p>

while:

|/2. !/img/carver.jpeg(the image)! | r1 c2 |
| *r2 c2* |

is producing

<table><tr>
 <td rowspan="2"><img src="/img/carver.jpeg" alt="the image" /></td>
 <td>r1 c2</td></tr><tr><td><strong>r2 c2</strong></td>
</tr></table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant