I'm trying to convert a python file into an html file using pygments
via the command line tool pygmentize
with the following command:
pygmentize -f html -O full -O linenos=1 out_file.html in_file.py
Unfortunately, the default fontsize is too small and I don't know how to increase it. Using -O fontsize=16
does not rise an error, but has no effect either.
Additionally, I tried an ugly patch by inserting html *{font-size: 1.05em !important;}
into the css part of the html document but that compromises the line numbering layout.
I am able to call 'pygments' via a python terminal, but don't know how one would implement the command line into python code
Ok, I fixed the problem by using the following python code:
I then added the line
into the css part of the html document and adapted the table padding