You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suggestion: github_flavored should treat the first row as the header row to match the Github markdown spec for tables. The markdown shown above is not being converted back to HTML properly by Redcarpet or the github_markup gem (Ruby). Thanks!
The text was updated successfully, but these errors were encountered:
Yes, I agree that the td + b approach would not be the best option. The issue is that I have a table that does not have a in the header so the markdown is appearling like this:
| header 1 | header 2 || item 3 | item 4 |
Without the | ---- | ---- | line to denote the header row, the Github markdown translator is not treating the table as a table when attempting to render the markdown back to HTML. I am using the github-markdown gem to convert the markdown to HTML.
I was able to get a possible solution working on my fork which detects and treats the first row of the table as the header row regardless of the presence of . I will try to get a PR together for your consideration.
I have some tables that are coded in HTML without like this...
Suggestion:
github_flavored
should treat the first row as the header row to match the Github markdown spec for tables. The markdown shown above is not being converted back to HTML properly by Redcarpet or the github_markup gem (Ruby). Thanks!The text was updated successfully, but these errors were encountered: