Change font in Github Flavored markdown for Table
github, github-flavored-markdown, markdown
Solution
I have managed to make the font size small in table by using `<sub>...</sub>` tag.
Achieved this by Wrapping each line of text (inside `td`) under `<sub>...</sub>`.
UPDATED WIKI LINK
Problem
I am creating a Wiki page in `github.com`. I am trying to use table in the `Markdown` edit mode. I created table by embedding html expecting to add inline-css later but found that inline-css also not working. I tried following: ``` <style> .markdown-body table td { font-size: 12px !important; } </style> ``` Link for my wiki page. Have anyone tried it before or achieved similar things or any help?