aboutsummaryrefslogtreecommitdiff
path: root/gemini-to-web/src
diff options
context:
space:
mode:
Diffstat (limited to 'gemini-to-web/src')
-rw-r--r--gemini-to-web/src/gemini_to_web/html.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gemini-to-web/src/gemini_to_web/html.py b/gemini-to-web/src/gemini_to_web/html.py
index e3a5d45..b192402 100644
--- a/gemini-to-web/src/gemini_to_web/html.py
+++ b/gemini-to-web/src/gemini_to_web/html.py
@@ -27,7 +27,7 @@ def to_html(parsed: list[parser.GemElement], title_extractor=first_header_title_
if title_extractor:
title = title_extractor(parsed)
if title:
- head.append(htmlgenerator.TITLE())
+ head.append(htmlgenerator.TITLE(title))
if extra_head:
head += extra_head