summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/remark-parse/lib/defaults.js
blob: ccb3fabd485901baf9b91c08942d189ddc886c26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * @author Titus Wormer
 * @copyright 2015 Titus Wormer
 * @license MIT
 * @module remark:parse:defaults
 * @fileoverview Default options for `parse`.
 */

'use strict';

/* Expose. */
module.exports = {
  position: true,
  gfm: true,
  yaml: true,
  commonmark: false,
  footnotes: false,
  pedantic: false,
  blocks: require('./block-elements'),
  breaks: false
};