Skip to content

Commit

Permalink
deploy: a440a6a
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Sep 16, 2024
1 parent f7e3f43 commit 2bf5f9c
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 26 deletions.
28 changes: 16 additions & 12 deletions man/en/chapter_30.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,23 +178,27 @@ <h1 class="menu-title">Just Programmer&#x27;s Manual</h1>
<main>
<h3 id="strings"><a class="header" href="#strings">Strings</a></h3>
<p>Double-quoted strings support escape sequences:</p>
<pre><code class="language-just">string-with-tab := "\t"
string-with-newline := "\n"
string-with-carriage-return := "\r"
string-with-double-quote := "\""
string-with-slash := "\\"
string-with-no-newline := "\
<pre><code class="language-just">carriage-return := "\r"
double-quote := "\""
newline := "\n"
no-newline := "\
"
slash := "\\"
tab := "\t"
unicode-codepoint := "\u{1F916}"
</code></pre>
<pre><code class="language-sh">$ just --evaluate
"tring-with-carriage-return := "
string-with-double-quote := """
string-with-newline := "
"arriage-return := "
double-quote := """
newline := "
"
string-with-no-newline := ""
string-with-slash := "\"
string-with-tab := " "
no-newline := ""
slash := "\"
tab := " "
unicode-codepoint := "🤖"
</code></pre>
<p>The unicode character escape sequence <code>\u{…}</code><sup>master</sup> accepts up to
six hex digits.</p>
<p>Strings may contain line breaks:</p>
<pre><code class="language-just">single := '
hello
Expand Down
28 changes: 16 additions & 12 deletions man/en/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -1106,23 +1106,27 @@ <h4 id="escaping-"><a class="header" href="#escaping-">Escaping <code>{{</code><
</code></pre>
<div style="break-before: page; page-break-before: always;"></div><h3 id="strings"><a class="header" href="#strings">Strings</a></h3>
<p>Double-quoted strings support escape sequences:</p>
<pre><code class="language-just">string-with-tab := "\t"
string-with-newline := "\n"
string-with-carriage-return := "\r"
string-with-double-quote := "\""
string-with-slash := "\\"
string-with-no-newline := "\
<pre><code class="language-just">carriage-return := "\r"
double-quote := "\""
newline := "\n"
no-newline := "\
"
slash := "\\"
tab := "\t"
unicode-codepoint := "\u{1F916}"
</code></pre>
<pre><code class="language-sh">$ just --evaluate
"tring-with-carriage-return := "
string-with-double-quote := """
string-with-newline := "
"arriage-return := "
double-quote := """
newline := "
"
string-with-no-newline := ""
string-with-slash := "\"
string-with-tab := " "
no-newline := ""
slash := "\"
tab := " "
unicode-codepoint := "🤖"
</code></pre>
<p>The unicode character escape sequence <code>\u{…}</code><sup>master</sup> accepts up to
six hex digits.</p>
<p>Strings may contain line breaks:</p>
<pre><code class="language-just">single := '
hello
Expand Down
2 changes: 1 addition & 1 deletion man/en/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion man/en/searchindex.json

Large diffs are not rendered by default.

0 comments on commit 2bf5f9c

Please sign in to comment.