1
0
Fork 0
hugo/docs/content/en/getting-started/glossary/raw-string-literal.md

410 B

title
raw string literal

Raw string literals are character sequences between backticks, as in `bar`. Within the backticks, any character may appear except a backtick. Backslashes have no special meaning and the string may contain newlines. Carriage return characters (\r) inside raw string literals are discarded from the raw string value. See details.