
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
@condorhero/vuepress-plugin-export-pdf-v2
Advanced tools
@condorhero/vuepress-plugin-export-pdf-v2 is a VuePress 2.x plugin that allows you to export your sites to a PDF file with outlines or bookmarks.
npm install @condorhero/vuepress-plugin-export-pdf-v2 -D
then add script to your package.json:
{
"scripts": {
"export-pdf": "press-export-pdf export [path/to/your/docs]"
}
}
Then run:
npm run export-pdf
press-export-pdf Command OptionsThe package provides the press-export-pdf command with the following command line options:
export [sourceDir]: Export your site to a PDF file
-c, --config <config>: Set path to config file--outFile <outFile>: Name of output file--outDir <outDir>: Directory of output files--pdfOutlines <pdfOutlines>: Keep PDF outlines/bookmarks(Node >= 18.5.0)--urlOrigin <urlOrigin>: Change the origin of the print url(Option displayHeaderFooter of pdfOptions is true)--debug: Enable debug modeinfo: Display environment information--help: Display help information--version: Display version informationYou can create a new config file, we support the following files:
vuepress-pdf.config.tsvuepress-pdf.config.jsvuepress-pdf.config.cjsvuepress-pdf.config.mjs.vuepress/vuepress-pdf.config.ts.vuepress/vuepress-pdf.config.js.vuepress/vuepress-pdf.config.cjs.vuepress/vuepress-pdf.config.mjsIn addition, you can also customize the configuration file through --config or -c.
It is recommended to use TS(.vuepress/vuepress-pdf.config.ts) files, which are easy to manage and have friendly code prompts.
ex:
// .vuepress/vuepress-pdf.config.ts
import { defineUserConfig } from '@condorhero/vuepress-plugin-export-pdf-v2'
export default defineUserConfig({
theme: '@vuepress/theme-default',
})
if you want to use JS files, you can leverage your IDE's intellisense with jsdoc type hints:
/**
* @type {import('@condorhero/vuepress-plugin-export-pdf-v2').UserConfig}
*/
const config = {
// ...
}
export default config
config options:
theme - theme name (default @vuepress/default)bundler - VuePress bundler name (default vuepress-vite)sorter - function for changing pages order (default undefined)outFile - name of output file (default vuepress-YYMMDD-HHmmss.pdf)outDir - Directory of output files (default package.json file exists in directory)routePatterns - Specify the patterns of files you want to be exported. The patterns are relative to the source directory (default ["/**", "!/404.html"]).Patterns to match Route path using multimatchpuppeteerLaunchOptions - Puppeteer launch options objectpdfOptions - Valid options to configure PDF generation via Page.pdf() (default { format: 'A4 }), pageNumber and totalPages of headerTemplate and footerTemplate cannot be used because of this reasonpdfOutlines - Keep PDF outlines/bookmarks(default true)urlOrigin: Change the origin of the print url(Option displayHeaderFooter of pdfOptions is true) - (How do I change the URL point to the localhost)outlineContainerSelector: Specify an outline container selector.A usable example of quick start click here.
console.log all the routes in the sort function and assign them to the variable routeOrder as a value. You can adjust the order of printing in the array routeOrder.
import { defineUserConfig } from 'vitepress-export-pdf'
const routeOrder = [
'/index.html',
'/guide/what-is-vitepress.html',
'/guide/getting-started.html',
'/guide/configuration.html',
// ...
]
export default defineUserConfig({
sorter: (pageA, pageB) => {
const aIndex = routeOrder.findIndex(route => route === pageA.path)
const bIndex = routeOrder.findIndex(route => route === pageB.path)
return aIndex - bIndex
},
})
.vuepress/vuepress-pdf.config.ts add pdfOutlines:
export default defineUserConfig({
pdfOutlines: false,
})
.vuepress/vuepress-pdf.config.ts add routePatterns:
export default defineUserConfig({
routePatterns: ['!/'],
})
Note:
!at the beginning of a pattern will negate the match
By default, A4 paper is used for printing, The size of A4 paper is (8.27in x 11.7in), One inch is equal to ninety-six pixels: 1 in = 96 pixel (X) ,the inch unit of A4 is converted to (793.92px x 1123.2px).
The layout of VuePress itself is responsive, which should meet your needs. If you change the size of the printing paper or don't want some styles on the website to be input into PDF, you need to simply write some CSS styles.
It is recommended that you change it in the global style of VuePress(.vuepress/styles/index.scss), use the print of @media to control CSS style.
for example:
@media print {
.navbar,
.sidebar,
.sidebar-mask {
display: none;
}
.page {
padding-left: inherit;
}
}

run vuepress info or press-export-pdf info Shows debugging information about the local environment.
FAQs
VuePress 2.x plugin exports a PDF 📁.
We found that @condorhero/vuepress-plugin-export-pdf-v2 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.