mirror of
https://github.com/gohugoio/hugo.git
synced 2025-05-02 00:20:21 +03:00
6 lines
409 B
Markdown
6 lines
409 B
Markdown
---
|
|
title: raw string literal
|
|
reference: 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.
|