123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- 'use strict';
- module.exports = {
- options: {
- html: true,
- xhtmlOut: true,
- breaks: false,
- langPrefix: 'language-',
- linkify: false,
-
- typographer: false,
-
-
-
-
-
- quotes: '\u201c\u201d\u2018\u2019',
-
-
-
-
-
-
- highlight: null,
- maxNesting: 20
- },
- components: {
- core: {
- rules: [
- 'normalize',
- 'block',
- 'inline',
- 'text_join'
- ]
- },
- block: {
- rules: [
- 'blockquote',
- 'code',
- 'fence',
- 'heading',
- 'hr',
- 'html_block',
- 'lheading',
- 'list',
- 'reference',
- 'paragraph'
- ]
- },
- inline: {
- rules: [
- 'autolink',
- 'backticks',
- 'emphasis',
- 'entity',
- 'escape',
- 'html_inline',
- 'image',
- 'link',
- 'newline',
- 'text'
- ],
- rules2: [
- 'balance_pairs',
- 'emphasis',
- 'fragments_join'
- ]
- }
- }
- };
|