How to customize fonts in mdBook?

I'd like to override theme/fonts/fonts.css and add additional TTF files. Is that directly possible in mdBook (on mdbook build)?

1 Like

For now I had to write this Batch:

mdbook build && @RD /S /Q "book/fonts" && mkdir "book/fonts" && robocopy "theme/fonts" "book/fonts" /s /e /np /nfl /ndl /njh /njs

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.