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

Workable implementation of dropping table thead from table results. #473

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

dbolack-ab
Copy link

@dbolack-ab dbolack-ab commented Feb 5, 2025

This adds a new control character for Table headers that drops the thead section from the resulting output.

|!| | |
|-|-|-|
|dasd|asdasd|
|asdasd|asdasdas|

Renders

<table><tbody><tr><td>dasd</td>
<td>asdasd</td>
<td></td>
</tr><tr><td>asdasd</td>
<td>asdasdas</td>
<td></td>
</tr></tbody></table>

Rationale:

This extension requires a header row to parse a table even if the user does not desire one. The current best solution is to CSS the header away.

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

Successfully merging this pull request may close these issues.

2 participants