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); }