Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed
https://markdown-it.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
778 B
62 lines
778 B
// List of valid html blocks names, accorting to commonmark spec
|
|
// http://jgm.github.io/CommonMark/spec.html#html-blocks
|
|
|
|
'use strict';
|
|
|
|
var html_blocks = {};
|
|
|
|
[
|
|
'article',
|
|
'aside',
|
|
'button',
|
|
'blockquote',
|
|
'body',
|
|
'canvas',
|
|
'caption',
|
|
'col',
|
|
'colgroup',
|
|
'dd',
|
|
'div',
|
|
'dl',
|
|
'dt',
|
|
'embed',
|
|
'fieldset',
|
|
'figcaption',
|
|
'figure',
|
|
'footer',
|
|
'form',
|
|
'h1',
|
|
'h2',
|
|
'h3',
|
|
'h4',
|
|
'h5',
|
|
'h6',
|
|
'header',
|
|
'hgroup',
|
|
'hr',
|
|
'iframe',
|
|
'li',
|
|
'map',
|
|
'object',
|
|
'ol',
|
|
'output',
|
|
'p',
|
|
'pre',
|
|
'progress',
|
|
'script',
|
|
'section',
|
|
'style',
|
|
'table',
|
|
'tbody',
|
|
'td',
|
|
'textarea',
|
|
'tfoot',
|
|
'th',
|
|
'tr',
|
|
'thead',
|
|
'ul',
|
|
'video'
|
|
].forEach(function (name) { html_blocks[name] = true; });
|
|
|
|
|
|
module.exports = html_blocks;
|
|
|