From 3c80f0eacab22196feef27306dbe50076bf88bc9 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 21 Apr 2018 18:25:25 +0900 Subject: [PATCH] Fix #1526 --- src/text/html.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/text/html.ts b/src/text/html.ts index e2db2457c..55265c206 100644 --- a/src/text/html.ts +++ b/src/text/html.ts @@ -54,9 +54,9 @@ const handlers = { document.body.appendChild(blockquote); }, - title({ document }, { title }) { + title({ document }, { content }) { const h1 = document.createElement('h1'); - h1.textContent = title; + h1.textContent = content; document.body.appendChild(h1); },