UNPKG

538 BJavaScriptView Raw
1function getDefaults() {
2 return {
3 baseUrl: null,
4 breaks: false,
5 gfm: true,
6 headerIds: true,
7 headerPrefix: '',
8 highlight: null,
9 langPrefix: 'language-',
10 mangle: true,
11 pedantic: false,
12 renderer: null,
13 sanitize: false,
14 sanitizer: null,
15 silent: false,
16 smartLists: false,
17 smartypants: false,
18 xhtml: false
19 };
20}
21
22function changeDefaults(newDefaults) {
23 module.exports.defaults = newDefaults;
24}
25
26module.exports = {
27 defaults: getDefaults(),
28 getDefaults,
29 changeDefaults
30};