+\\@^ [*][*] @!{ (*format non·empty lines of code*)
+ s@/[*]\\([^* ]*\\)[*]/@\\1@g; (*explicit formatting*)
+ \\@/[*][^ ]*[*]/@!{ (*autoformat lines without explicit formatting*)
+ s@^\0043ifndef \\([^ ]*\\)@\0043ifndef ⟨\\1⟩@; (*macro ifndef*)
+ s@^\0043define \\([^ ]*\\)@\0043define ⟨\\1⟩@; (*macro define*)
+ s@^\0043endif /[*] \\([^ ]*\\) [*]/@\0043endif /* ⟨\\1⟩ */@; (*macro define*)
+ \\@\t*[?:]@!s@^\\(\t\t*\\)\\([^ ]*\\);@\\1⟨\\2⟩;@; (*handle (presumed) enum members without assignment*)
+ \\@\t*[?:]@!s@^\\(\t\t*\\)\\([^ ]*\\) =@\\1⟨\\2⟩ =@; (*handle (presumed) enum members with assignment*)
+ \\@\t*[?:]@!s@^\\(\t\t*\\)\\([^= ]\\( *[^= ]\\)*\\) \\([^ ][^ ]*\\);@\\1⸤\\2⸥ ⟨\\4⟩;@; (*handle (presumed) struct members*)
+ s@^\\(constexpr \\)*\\([^\t= ]\\( *[^= ]\\)*\\) \\([^= ][^= ]*\\) =@\\1⸤\\2⸥ ⟨\\4⟩ =@; (*handle file‐scope assignments*)
+ s@^enum \\([^ ][^ ]*\\)@enum ⸤\\1⸥@; (*enum declarations*)
+ \\@^enum@s@: \\([^{]*[^{ ]\\)@: ⸤\\1⸥@; (*enum underlying values*)
+ s@^struct \\([^ ][^ ]*\\)@struct ⸤\\1⸥@; (*struct declarations*)
+ s@^typedef \\([^ ]\\( *[^ ]\\)*\\) \\([^ ][^ ]*\\);@typedef ⸤\\1⸥ ⸤\\3⸥;@; (*typedef definitions*)
+ \\@^[^\t ][^\t ]* [^ ][^ ]*(@s@, *@⸥, ⸤@g; (*format function arguments*)
+ s@^\\([^\t ][^ ]*\\) \\([^ ][^ ]*\\)(\\([^)][^)]*\\))@⸤\\1⸥ ⟨\\2⟩(⸤\\3⸥)@; (*format functions*)
+ s@\\(//.*\\)$$@⟦\\1⟧@; (*format comments*)
+ };
+ \\@.@s@^@\t|`@; (*format beginning of line*)
+ \\@.@s@$$@´@; (*format end of line*)
+};
+\\@^ [*][*] @{ (*format documentation*)
+ s@^ [*][*] [ \t]*@@; (*drop documentation leader*)
+ s@ :—@ :—@g; (*fixup spacing for :—*)
+ s@« @« @g; (*fixup spacing for «*)
+ s@‹ @‹ @g; (*fixup spacing for ‹*)
+ s@—: @—: @g; (*fixup spacing for —:*)
+ s@ »@ »@g; (*fixup spacing for »*)
+ s@ ›@ ›@g; (*fixup spacing for ›*)
+ s@{<\\([^>]*\\)[.]h>}@{🔗`\\1`<./\\1>}@g; (*header file linking*)
+};