1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/**
* @author Titus Wormer
* @copyright 2015-2016 Titus Wormer
* @license MIT
* @module remark:stringify:defaults
* @fileoverview Default options for `stringify`.
*/
'use strict';
/* eslint-env commonjs */
module.exports = {
'gfm': true,
'commonmark': false,
'pedantic': false,
'entities': 'false',
'setext': false,
'closeAtx': false,
'looseTable': false,
'spacedTable': true,
'incrementListMarker': true,
'fences': false,
'fence': '`',
'bullet': '-',
'listItemIndent': 'tab',
'rule': '*',
'ruleSpaces': true,
'ruleRepetition': 3,
'strong': '*',
'emphasis': '_'
};
|