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) => {