escaping with \

SirNapkin1334 2018-04-25 15:30:38 -07:00
parent ffbd03a4d1
commit dcaebac3be

@ -16,7 +16,7 @@ In general, one worded, simple, or continuous phrases may be implicitly stated.
There are limitations for phrases containing certain char, including ` ` `-#$%` There are limitations for phrases containing certain char, including ` ` `-#$%`
These phrases fall under the explicit category in which quotation marks `" "` are necessary. These phrases fall under the explicit category in which quotation marks `" "` are necessary. These _can_ be escaped via the use of a backslash, but this should only really be used when there is one character that needs to be escaped.
**Example 3:** **Example 3:**
@ -30,6 +30,8 @@ Incorrect: `echo 0:/Nintendo 3DS/`
Correct: `echo "0:/Nintendo 3DS/"` Correct: `echo "0:/Nintendo 3DS/"`
Also correct (not recommended): `echo 0:/Nintendo\ 3DS/`
### Skipping lines ### Skipping lines
Phrases that are too long may become unreadable if they fill past the right edge of the 3DS bottom screen. Like typing with the **Enter** key for a keyboard, the inclusion of `\n` serves as a break to begin readouts with a new line. Phrases that are too long may become unreadable if they fill past the right edge of the 3DS bottom screen. Like typing with the **Enter** key for a keyboard, the inclusion of `\n` serves as a break to begin readouts with a new line.