ulivz / vuepress-plugin-export

Export your VuePress site to a PDF file
MIT License
90 stars 17 forks source link

[feature] config for user to hide nav bar and change margin #15

Open foreseaz opened 4 years ago

foreseaz commented 4 years ago

Is it possible to add the feature for the user to hide the nav bar and change the margin? Since there are some minor styling differences between the website and PDF version of the docs, e.g. no nav bar, upper and bottom margin, text horizontal overflow wrap, etc.

Thanks for the efforts.

foreseaz commented 4 years ago

Just create a PR for this feature, please kindly review. Usage:

[
    "vuepress-plugin-export",
    {
        hideNav: true,
        page: {
            format: 'A4',
            printBackground: true,
            margin: {
                top: 60,
                left: 20,
                right: 20,
                bottom: 60
            }
        }
    }
]