-
-
Notifications
You must be signed in to change notification settings - Fork 11.3k
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
Tables without headers #266
Comments
As a workaround, that the suggestion in that SO answer almost works. If you put this in MDH's Primary Styling CSS: th:empty {
font-size: 0px;
margin: 0;
padding: 0;
border: 0;
} ...You end up with this: Notice the one-pixel-thicker grey line at the top? That's from the This will affect all thead > tr {
padding: 0;
margin: 0;
border: 0;
} But... the good news is that it doesn't seem to adversely affect the non-empty case! (...What the hell? I guess the Anyway, you still end up typing an empty header row, so I'm guessing this workaround doesn't satisfy you. |
Also note that you can create tables with HTML and then put whatever you want in them. Check out the info in the wiki: https://github.com/adam-p/markdown-here/wiki/Tips-and-Tricks#tables |
What I want to spare is the source what I type in. I use Markdown Here (I really like) to spare me time for formatting. So if would work this, would help me when I need to paste info without headers: To have an extra grey border, would not bother me, but I have to type two extra lines for source text, this is what I want to avoid. (only if possible, of course) |
I know. We'll leave the issue open. |
added th:empty into Table for md style md style isn't able to hide headers (adam-p/markdown-here#266)
@adam-p I don't understand, how can I use your answer with GitHub Flavored Markdown? |
Would you consider to include feature to allow tables without headers:
http://stackoverflow.com/a/17543474/319372
Sample:
a | b | c
d | e | f
Instread of:
The text was updated successfully, but these errors were encountered: