matousc
matousc

Reputation: 3977

Python Pdoc - how to export html with separate css file?

I am using pdoc function:

def html(module_name, docfilter=None, allsubmodules=False, external_links=False, link_prefix='', source=True) 

But according to documentation on http://pdoc.burntsushi.net/pdoc#pdoc.html I am unable to find out how to export HTML separated from CSS.

Upvotes: 2

Views: 793

Answers (1)

K3---rnc
K3---rnc

Reputation: 7049

Pdoc uses a html.mako template file that includes CSS stylesheets. To change CSS, one needs to either copy and modify the whole HTML template, or override just the included head.mako to include additional styles. In either case one then needs to run pdoc with --template-dir switch:

$ pdoc --html --template-dir=my_templates my_project

Upvotes: 1

Related Questions