orzih / mkdocs-with-pdf

Generate a single PDF file from MkDocs repository.
MIT License
325 stars 76 forks source link

Fonts : Headers remplaced by squares #65

Closed Tomaaso closed 2 years ago

Tomaaso commented 3 years ago

image

image

Hi, I have a problem with headers fonts but impossible for me to fix it... This screeshot is from the sample mkdocs.

debug.txt

Thanks.

orzih commented 3 years ago

Hi @Wikhar.

It seems that the sans-serif font is not configured on your system.

See:


If you simply use serif font, add the following to your css:

@media print {
  h1, h2, h3, h4, h5, h6, label { font-family: serif !important; }
}