The spec only speaks of newline normalization in the context of multi-line basic strings and is in fact quite literal about the fact that "content between the [multi-line literal] delimiters is interpreted as-is without modification".
I'm not an expert on reading ABNF, but the ABNF spec says
mll-content = mll-char / newline
that is, it does not include newline in mll-char (multi-line literal char), making me think perhaps the normalization is, nonetheless, allowed in multi-line literals as well.
I'd much appreciate clarification/someone else's interpretation.
The spec only speaks of newline normalization in the context of multi-line basic strings and is in fact quite literal about the fact that "content between the [multi-line literal] delimiters is interpreted as-is without modification".
I'm not an expert on reading ABNF, but the ABNF spec says
that is, it does not include
newlineinmll-char(multi-line literal char), making me think perhaps the normalization is, nonetheless, allowed in multi-line literals as well.I'd much appreciate clarification/someone else's interpretation.