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

Fix HTML output for title rows #161

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Jan 21, 2024

  1. tests: fix expected html output

    title rows used improper <th><td> instead of <tr><th>
    michaelsippel committed Jan 21, 2024
    Configuration menu
    Copy the full SHA
    121ca97 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2024

  1. fix html output for title-rows

    - adds `CellType` for each `Cell` with corresponding getter/setter
    - in `Cell::print_html()` choose `<th>` or `<td>` based on `cell_type`
    - add `Row::set_cell_type()` to set type for all cells in a row
    - always set title-row to `CellType::Head`
    michaelsippel committed Feb 1, 2024
    Configuration menu
    Copy the full SHA
    d65ea7f View commit details
    Browse the repository at this point in the history