Files
30-seconds-of-code/node_modules/mdast-util-toc/lib/list.js
2019-08-20 15:52:05 +02:00

27 lines
423 B
JavaScript

/**
* @author Titus Wormer
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:toc
* @fileoverview Generate a Table of Contents (TOC) from a given Markdown file.
*/
/* Expose. */
module.exports = list;
/* Constants */
var LIST = 'list';
/**
* Create a list.
*
* @return {Object} - List node.
*/
function list() {
return {
type: LIST,
ordered: false,
children: []
};
}