Strip a leading **Label:** / **Label๏ผ** prefix from a Markdown
BLUF line, in any of the 14 publishing languages. Translated
executive briefs open the ## FOR IMMEDIATE ACTION section with
patterns such as **Issue:** โฆ, **Frรฅga:** โฆ, **Asunto:** โฆ,
**ไธป้ก:** โฆ, **ุงูู ูุถูุน:** โฆ, **Thema:** โฆ, **Sujet :** โฆ โ
without this stripper the localized label leaked into
<meta description> for every non-English locale (the English
**Issue:** line is already filtered by METADATA_LINE_PREFIXES).
The matcher is structural, not vocabulary-driven: it accepts up to
5 word/glyph tokens (letters, marks, digits, spaces, hyphens),
followed by either an ASCII colon : or full-width colon ๏ผ,
followed by **, followed by whitespace. Returns the line verbatim
when no qualifying opener is present so it is safe to apply
unconditionally.
Parameters
raw: string
Raw Markdown line (still carrying **โฆ** decorations)
Returns string
Line with the leading **Label:** prefix removed, or the
original input when no such prefix exists
Strip a leading
**Label:**/**Label๏ผ**prefix from a Markdown BLUF line, in any of the 14 publishing languages. Translated executive briefs open the## FOR IMMEDIATE ACTIONsection with patterns such as**Issue:** โฆ,**Frรฅga:** โฆ,**Asunto:** โฆ,**ไธป้ก:** โฆ,**ุงูู ูุถูุน:** โฆ,**Thema:** โฆ,**Sujet :** โฆโ without this stripper the localized label leaked into<meta description>for every non-English locale (the English**Issue:**line is already filtered byMETADATA_LINE_PREFIXES).The matcher is structural, not vocabulary-driven: it accepts up to 5 word/glyph tokens (letters, marks, digits, spaces, hyphens), followed by either an ASCII colon
:or full-width colon๏ผ, followed by**, followed by whitespace. Returns the line verbatim when no qualifying opener is present so it is safe to apply unconditionally.