fix: Empty anchors no longer crash the rendering process

This commit is contained in:
NGPixel
2017-05-01 22:01:45 -04:00
committed by Nicolas Giard
parent f2bcc378d5
commit a9ed499006
4 changed files with 113 additions and 449 deletions

View File

@@ -102,7 +102,7 @@ module.exports = (port, spinner) => {
},
() => {
const os = require('os')
if (os.totalmem() < 1024 * 1024 * 768) {
if (os.totalmem() < 1000 * 1000 * 768) {
throw new Error('Not enough memory. Minimum is 768 MB.')
}
return _.round(os.totalmem() / (1024 * 1024)) + ' MB of system memory available. Minimum is 768 MB.'

View File

@@ -110,7 +110,7 @@ const parseTree = (content) => {
if (heading.type === 'inline') {
let content = ''
let anchor = ''
if (heading.children && heading.children[0].type === 'link_open') {
if (heading.children && heading.children.length > 0 && heading.children[0].type === 'link_open') {
content = heading.children[1].content
anchor = _.kebabCase(content)
} else {