do not error out if TOC parent does not have attribs (#17246)

This commit is contained in:
Vanessa Yuen 2021-01-11 15:57:05 +01:00 коммит произвёл GitHub
Родитель 7be7ee9215
Коммит 8c881e6b1a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -16,7 +16,7 @@ module.exports = function getMiniTocItems (html, maxHeadingLevel = 3) {
const items = headings
.get()
.filter(item => {
if (!item.parent) return true
if (!item.parent || !item.parent.attribs) return true
// Hide any items that belong to a hidden div
const { attribs } = item.parent
return !('hidden' in attribs)