aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralex <alex@pdp7.net>2026-02-15 20:15:54 +0100
committeralex <alex@pdp7.net>2026-02-15 20:15:54 +0100
commit4cfe4cf317035c089491acb351c1eed146feef54 (patch)
treeb320c7d93ba07b6081fd9b60707104f57f56003e
parentace7e467da4558e9fc0084a9734d8dbe8196c84c (diff)
Fix bug
-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