1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

docs: fix string literal example formatting

This commit is contained in:
Ryan Hendrickson 2024-07-31 19:22:17 -04:00
parent 9e8afc68e5
commit 17318bc70d

View file

@ -36,7 +36,7 @@ The following must be escaped to represent them within a string, by prefixing wi
> "\""
> ```
>
> "\""
> "\""
- Backslash (`\`)
@ -46,7 +46,7 @@ The following must be escaped to represent them within a string, by prefixing wi
> "\\"
> ```
>
> "\\"
> "\\"
- Dollar sign followed by an opening curly bracket (`${`) "dollar-curly"
@ -56,7 +56,7 @@ The following must be escaped to represent them within a string, by prefixing wi
> "\${"
> ```
>
> "\${"
> "\${"
The newline, carriage return, and tab characters can be written as `\n`, `\r` and `\t`, respectively.
@ -68,7 +68,7 @@ A "double-dollar-curly" (`$${`) can be written literally.
> "$${"
> ```
>
> "$\${"
> "$\${"
String values are output on the terminal with Nix-specific escaping.
Strings written to files will contain the characters encoded by the escaping.
@ -107,10 +107,11 @@ each line, so the resulting string is
> >
> > The following indented string is prefixed with tabs:
> >
> > ''
> > <pre><code class="nohighlight">''
> > all:
> > @echo hello
> > ''
> > </code></pre>
> >
> > "\tall:\n\t\t@echo hello\n"