html: Implement fat table rows (use tbodies to represent separators)
html does not support table separator rows as Org mode does. Emacs org export simulates rows as defined by separators by wrapping all the rows between 2 separators into a separate tbody. The html spec is fine with that [0] so we follow. [0] https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tbody
This commit is contained in:
parent
5917d8fb1c
commit
e076412b29
5 changed files with 82 additions and 12 deletions
10
org/testdata/tables.pretty_org
vendored
10
org/testdata/tables.pretty_org
vendored
|
@ -36,3 +36,13 @@
|
|||
| long column a | long column b | long column c |
|
||||
|---------------+---------------+---------------|
|
||||
| 1 | 2 | 3 |
|
||||
|
||||
#+CAPTION: table with multiple separators (~ multiple tbodies)
|
||||
| a | b | c |
|
||||
|---+---+---|
|
||||
| 1 | 2 | 3 |
|
||||
| . | . | . |
|
||||
|---+---+---|
|
||||
| 1 | 2 | 3 |
|
||||
|---+---+---|
|
||||
| 1 | 2 | 3 |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue