diff options
| author | alex <alex@pdp7.net> | 2026-02-15 20:15:54 +0100 |
|---|---|---|
| committer | alex <alex@pdp7.net> | 2026-02-15 20:15:54 +0100 |
| commit | 4cfe4cf317035c089491acb351c1eed146feef54 (patch) | |
| tree | b320c7d93ba07b6081fd9b60707104f57f56003e | |
| parent | ace7e467da4558e9fc0084a9734d8dbe8196c84c (diff) | |
Fix bug
| -rw-r--r-- | gemini-to-web/src/gemini_to_web/html.py | 2 |
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 |
