mkdocs-with-pdf icon indicating copy to clipboard operation
mkdocs-with-pdf copied to clipboard

Generate a single PDF file from MkDocs repository.

Results 89 mkdocs-with-pdf issues
Sort by recently updated
recently updated
newest added

#86 : Fixing logo page not displaying on Windows. Adapted path format if the build platform is Windows. Thank you @jolekss

I am running mkdocs-with-pdf 0.9.3 on Windows 10. The cover page logo (`cover_logo`) does not appear in the PDF. All other images work fine. In the debug HTML, the image...

Thank you for this amazing plugin! I've been trying to get a good-looking PDF of my mkdocs site working, but I'm struggling with the rendered font.. I've created a Docker...

Hello, thanks for this plugin. I build a PDF with a back cover. This page has a qrcode but it is very very big (approximately all of the page) ![image](https://user-images.githubusercontent.com/82046143/182781244-5ff030fd-7e79-4d6a-b5dc-3cf89fe68c64.png)...

The colors used for TOC and underlines of the headlines are currently statically set: ![image](https://user-images.githubusercontent.com/13590797/180272935-72d3cd7f-bbca-4dcb-a7d2-8c507560b14b.png) ![image](https://user-images.githubusercontent.com/13590797/180273006-94c72a00-ed1b-4a69-b8c4-8d546efd3712.png) Instead of displaying the theme color `inidigo-blue` they use the colors set here: https://github.com/orzih/mkdocs-with-pdf/blob/f2e78d8c8ecb505636ba31a4830646038a78accd/mkdocs_with_pdf/styles/_heading.scss#L1-L12...

https://github.com/orzih/mkdocs-with-pdf/issues/88

Bumps [terser](https://github.com/terser/terser) from 5.7.0 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...

dependencies
javascript

A little fix for issue that it was described here: [https://github.com/orzih/mkdocs-with-pdf/issues/114](https://github.com/orzih/mkdocs-with-pdf/issues/114)

[generator.py](https://github.com/orzih/mkdocs-with-pdf/blob/master/mkdocs_with_pdf/generator.py#L381) ```python if len(self._mixed_script) > 0: tag = soup.new_tag('script') tag.text = self._mixed_script body.append(tag) ``` The atribute .text is only a getter. Please consider to update this line to: ```python tag.append(self._mixed_script)...