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

multiple tables (or other elements) in parallel #593

Closed
davidak opened this issue Jan 16, 2016 · 1 comment
Closed

multiple tables (or other elements) in parallel #593

davidak opened this issue Jan 16, 2016 · 1 comment

Comments

@davidak
Copy link

davidak commented Jan 16, 2016

is there a way to have multiple tables in parallel?

if not, this is a feature request.

bildschirmfoto 2016-01-16 um 18 20 34

@kivikakk
Copy link
Contributor

You can use raw HTML to achieve this effect by embedding tables within tables:

a b
c d
e f
a b
c d
e f

It's not super pretty, but it works. Here's the source:

<table>
<tr>
<td>

| a | b |
| --- | --- |
| c | d |
| e | f |

</td>
<td>

| a | b |
| --- | --- |
| c | d |
| e | f |

</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

2 participants