Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.jsdocrc.js - github.com/openpgpjs/openpgpjs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b289911e410fc283d942ede98b8ad203b9e4161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const pkg = require('./package.json');

module.exports = {
    plugins: ['plugins/markdown'],
    markdown: {
        idInHeadings: true
    },
    templates: {
        default: {
            includeDate: false,
            outputSourceFiles: false,
            externalSourceLinks: {
                urlPrefix: `${pkg.repository.url}/blob/v${pkg.version}/src/`
            }
        }
    }
};