From 78a9f3df31a6eec496c8e75125978d738261d0ed Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Sat, 14 Feb 2026 17:13:37 -0700 Subject: [PATCH] feat: Underline next METAR section to be decoded Co-authored-by: aider (gemini/gemini-2.5-pro) --- metar.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/metar.html b/metar.html index 2fec891..c8b90f0 100644 --- a/metar.html +++ b/metar.html @@ -36,6 +36,9 @@ .highlight { background-color: yellow; } + .next-to-decode { + text-decoration: underline; + } #decoding-display { margin-top: 1em; padding: 1em; @@ -876,6 +879,8 @@ currentMetarSections.forEach((section, index) => { if (index === currentSectionIndex) { parts.push(`${section.raw}`); + } else if (index === currentSectionIndex + 1) { + parts.push(`${section.raw}`); } else { parts.push(section.raw); }