Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gitgalaxy/standards/language_standards.py
Original file line number Diff line number Diff line change
Expand Up @@ -4320,8 +4320,8 @@
"_inline_comment": None,
# Block comment start: Standard SGML/XML literature delimiter.
"_block_start": re.compile(r"<!--"),
# Block comment end: Standard SGML/XML literature delimiter.
"_block_end": re.compile(r"-->"),
# Block comment end: Accept both --> and permissive HTML parser form --!>.
"_block_end": re.compile(r"--!?>"),
# --- PHASE 1: PHYSICS ENGINE (Geometry & Structure) ---
# 1. branch (The Forks in the Road)
# User-driven branching and declarative framework conditionals.
Expand Down
Loading