fish-shell/doc_src
Aurelio Jargas 0304135d2b
docs: Use \ instead of \\ in examples (#7286)
Instead of informing the bell character (hex 07), the example was using
an escaped \ followed by x07.

    $ echo \\x07
    \x07
    $ echo \x07

    $ echo \x07 | od -a
    0000000 bel  nl
    0000002
    $

* docs: Use \u instead of \\u

Instead of informing the Unicode character 慡, this example was using an
escaped \ followed by u6161.

    $ echo \\u6161
    \u6161
    $ echo \u6161
    慡

Before:

    $ string escape --style=var 'a1 b2'\\u6161 | string unescape --style=var
    a1 b2\u6161

Now:

    $ string escape --style=var 'a1 b2'\u6161 | string unescape --style=var
    a1 b2慡
2020-08-26 18:29:03 +02:00
..
_static docs: use parsed-literal to highlight interactive examples 2020-08-02 14:22:29 -07:00
cmds docs: Use \ instead of \\ in examples (#7286) 2020-08-26 18:29:03 +02:00
CHANGELOG.rst Add CHANGELOG to the docs 2020-05-30 10:07:21 +02:00
commands.rst We no longer have two doc systems, move sphinx_doc_src back to doc_src 2020-02-19 17:00:35 -08:00
completions.rst docs: don't quote code snippets 2020-04-13 22:56:22 +02:00
conf.py Add CHANGELOG to the docs 2020-05-30 10:07:21 +02:00
design.rst docs: fix small formatting issues 2020-08-07 22:05:05 +08:00
faq.rst Adjust the FAQ 2020-08-21 20:46:23 +02:00
fish_for_bash_users.rst docs: Add word splitting example 2020-07-09 18:35:41 +02:00
fish_indent_lexer.py We no longer have two doc systems, move sphinx_doc_src back to doc_src 2020-02-19 17:00:35 -08:00
index.rst docs: Use \ instead of \\ in examples (#7286) 2020-08-26 18:29:03 +02:00
license.rst chore: bump copyright year 2019 → 2020 2020-03-14 14:03:09 -07:00
tutorial.rst docs: use parsed-literal to highlight interactive examples 2020-08-02 14:22:29 -07:00