This commit is contained in:
28
node_modules/remark-stringify/lib/defaults.js
generated
vendored
Normal file
28
node_modules/remark-stringify/lib/defaults.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
'use strict'
|
||||
|
||||
module.exports = {
|
||||
gfm: true,
|
||||
commonmark: false,
|
||||
pedantic: false,
|
||||
entities: 'false',
|
||||
setext: false,
|
||||
closeAtx: false,
|
||||
looseTable: false,
|
||||
spacedTable: true,
|
||||
paddedTable: true,
|
||||
stringLength: stringLength,
|
||||
incrementListMarker: true,
|
||||
fences: false,
|
||||
fence: '`',
|
||||
bullet: '-',
|
||||
listItemIndent: 'tab',
|
||||
rule: '*',
|
||||
ruleSpaces: true,
|
||||
ruleRepetition: 3,
|
||||
strong: '*',
|
||||
emphasis: '_'
|
||||
}
|
||||
|
||||
function stringLength(value) {
|
||||
return value.length
|
||||
}
|
||||
Reference in New Issue
Block a user