Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-11-27 | HTML reader tests: improve test coverage of new features | Albert Krewinkel | 1 | -1/+2 | |
2020-11-27 | HTML reader: support body headers, row head columns | Albert Krewinkel | 1 | -41/+61 | |
Closes: #6312 | |||||
2020-11-26 | HTML reader: improve support for table headers, footer, attributes | Albert Krewinkel | 2 | -66/+219 | |
- `<tfoot>` elements are no longer added to the table body but used as table footer. - Separate `<tbody>` elements are no longer combined into one. - Attributes on `<thead>`, `<tbody>`, `<th>`/`<td>`, and `<tfoot>` elements are preserved. | |||||
2020-11-26 | HTML reader: allow finer grained options for tag omission | Albert Krewinkel | 2 | -12/+25 | |
2020-11-24 | HTML reader: support row or column-spanning table cells | Albert Krewinkel | 1 | -16/+18 | |
2020-11-24 | HTML reader: support blocks in caption | Albert Krewinkel | 1 | -5/+5 | |
2020-11-24 | HTML reader: extract table parsing into separate module | Albert Krewinkel | 2 | -0/+137 | |
2020-11-23 | HTML reader: extract submodules | Albert Krewinkel | 3 | -0/+331 | |
Reducing module size should reduce memory use during compilation. This is preparatory work to tackle support for more table features. |