1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 'use strict';
- module.exports = {
- options: {
- html: false,
- xhtmlOut: false,
- breaks: false,
- langPrefix: 'language-',
- linkify: false,
-
- typographer: false,
-
-
-
-
-
- quotes: '\u201c\u201d\u2018\u2019',
-
-
-
-
-
-
- highlight: null,
- maxNesting: 20
- },
- components: {
- core: {
- rules: [
- 'normalize',
- 'block',
- 'inline'
- ]
- },
- block: {
- rules: [
- 'paragraph'
- ]
- },
- inline: {
- rules: [
- 'text'
- ],
- rules2: [
- 'balance_pairs',
- 'text_collapse'
- ]
- }
- }
- };
|