fix: Exclude commented headers from page contents tree

This commit is contained in:
NGPixel 2017-05-04 21:16:53 -04:00
parent 767896dbe4
commit 25c105cdc2

View File

@ -94,6 +94,7 @@ const videoRules = [
* @return {Array} TOC tree
*/
const parseTree = (content) => {
content = content.replace(/<!--(.|\t|\n|\r)*?-->/g, '')
let tokens = md().parse(content, {})
let tocArray = []