From 4db6760ce9c3d7ac7b36ab20e65e75e8de921ff9 Mon Sep 17 00:00:00 2001 From: Emi Griffith Date: Wed, 15 Jul 2026 22:25:58 -0700 Subject: [PATCH] =?UTF-8?q?City=20pages:=20keep=20"Read=20more=20=E2=86=92?= =?UTF-8?q?"=20from=20wrapping=20mid-phrase=20(#114)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Wikipedia "Read more →" link in the notable-weather section could break between "Read" and "more" at narrow widths. Join it with non-breaking spaces so it stays on one line. Claude-Session: https://claude.ai/code/session_01XXxmNFy9cZ6Gh8Y9thZn62 --- templates/city.html.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/city.html.j2 b/templates/city.html.j2 index c188466..a3a1435 100644 --- a/templates/city.html.j2 +++ b/templates/city.html.j2 @@ -43,7 +43,7 @@ {% if event %}

Notable weather in {{ name }}

-

{{ event.text }}{% if event.url %} Read more →{% endif %}

+

{{ event.text }}{% if event.url %} Read more →{% endif %}

{% endif %}