mirror of https://github.com/gohugoio/hugo
409 B
409 B
title | reference |
---|---|
raw string literal | https://go.dev/ref/spec#String_literals |
A raw string literal is a 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.