Reputation: 823
I'm converting some markdown to Html File like this
pandoc basic_python.md -t html -o basic_python.html
By default, the font-size is quite small in the HTML file I'd like to make all the fonts bigger (title, subtitle, text, etc.). How can I do that?
Upvotes: 2
Views: 343
Reputation: 39179
Using recent versions of pandoc:
pandoc -s -M fontsize=22px input.md -o output.html
Note the -s
for standalone. The default fontsize is 20px.
Upvotes: 1