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

Headerless tables don't work in GitHub Markdown output #49

Open
waldyrious opened this issue Apr 2, 2020 · 0 comments
Open

Headerless tables don't work in GitHub Markdown output #49

waldyrious opened this issue Apr 2, 2020 · 0 comments

Comments

@waldyrious
Copy link
Contributor

GitHub Markdown does not support headerless tables. When the "Header location = None" is selected, the resulting table is

| lorem    | ipsum | dolor       |
| sit      | amet  | consectitur |
| adipisci | elit  |             |

which results in this:

| lorem | ipsum | dolor |
| sit | amet | consectitur |
| adipisci | elit | |

Instead, it should be:

|          |       |             |
|----------|-------|-------------|
| lorem    | ipsum | dolor       |
| sit      | amet  | consectitur |
| adipisci | elit  |             |

which results in:

lorem ipsum dolor
sit amet consectitur
adipisci elit

See mixmark-io/turndown-plugin-gfm#10 and https://stackoverflow.com/questions/17536216/create-a-table-without-a-header-in-markdown for similar discussions elsewhere (with the same suggested wokaround).

@waldyrious waldyrious changed the title Headerless tables don't work in for GitHub Markdown output don't work Headerless tables don't work in GitHub Markdown output Apr 27, 2020
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

1 participant