aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorache <ache@ache.one>2020-05-08 04:25:53 +0200
committerache <ache@ache.one>2020-05-08 04:25:53 +0200
commitabd80cd6e2d61c61a7d042d7515b923dc8460d63 (patch)
treed3137c66332c16f2fbd59a0158f813dff6043b1b /src
parentUpdate README.md (diff)
Add support for autolinks
Diffstat (limited to 'src')
-rw-r--r--src/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js
index d956851..83eb0c1 100644
--- a/src/index.js
+++ b/src/index.js
@@ -4,7 +4,7 @@ const parseAttr = require('md-attr-parser');
const htmlElemAttr = require('html-element-attributes');
const isWhiteSpace = require('is-whitespace-character');
-const supportedElements = new Set(['link', 'atxHeading', 'strong', 'emphasis', 'deletion', 'code', 'setextHeading', 'fencedCode', 'reference', 'footnoteCall']);
+const supportedElements = new Set(['link', 'atxHeading', 'strong', 'emphasis', 'deletion', 'code', 'setextHeading', 'fencedCode', 'reference', 'footnoteCall', 'autoLink']);
const blockElements = new Set(['atxHeading', 'setextHeading']);
const particularElements = new Set(['fencedCode']);