mirror of
https://github.com/openpgpjs/openpgpjs.git
synced 2025-06-06 22:26:46 +00:00
17 lines
363 B
JavaScript
17 lines
363 B
JavaScript
const pkg = require('./package.json');
|
|
|
|
module.exports = {
|
|
plugins: ['plugins/markdown'],
|
|
markdown: {
|
|
idInHeadings: true
|
|
},
|
|
templates: {
|
|
default: {
|
|
outputSourceFiles: false,
|
|
externalSourceLinks: {
|
|
urlPrefix: `${pkg.repository.url}/blob/v${pkg.version}/src/`
|
|
}
|
|
}
|
|
}
|
|
};
|