From 4c273b154328a6b385d462af5bb0dd5ccfdc3ad7 Mon Sep 17 00:00:00 2001 From: Talon Poole Date: Thu, 25 Feb 2021 21:37:26 +0000 Subject: [PATCH] 1.0.8-rc.4 --- html.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html.js b/html.js index c6d67cb..8d1853e 100644 --- a/html.js +++ b/html.js @@ -129,7 +129,7 @@ export function head(tokens, options) { const truncate = (text, limit) => text.length > limit ? `${text.substring(0, limit)}...` : text; - const heading = tokens.find(({ h1 }) => h1) + const heading = tokens.find(({ h1 }) => h1); const description = options.description > 0 ? tokens.find((token) => {