Skip to content

Commit 785f2fd

Browse files
committed
Updated help docs to include escaped substitution chars.
Signed-off-by: Grant Skinner <[email protected]>
1 parent 744ba9f commit 785f2fd

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

js/documentation.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,9 @@ var library = {
4646
{
4747
label:"Substitution panel",
4848
desc:"Click the <b>Substitution</b> title bar below the <b>Text</b> panel to show or hide the <b>Substitution</b> panel."+
49-
"<p>Matches in the <b>Text</b> panel will be replaced by the substitution string and displayed as you type.</p>"+
50-
"<p>Roll over highlighted tokens in the substitution string for information.</p>"
49+
"<p>Matches in the <b>Text</b> panel are replaced by the substitution string & displayed as you type.</p>"+
50+
"<p>Escaped characters compatible with the JS string format are supported, such as <code>\\n</code>, <code>\\t</code> & <code>\\u0009</code>.</p>"+
51+
"<p>Roll over tokens in the substitution string for information.</p>"
5152
},
5253
{
5354
label:"Library panel",
@@ -372,6 +373,11 @@ var library = {
372373
label: "escaped $",
373374
desc:"Inserts a dollar sign character ($).",
374375
token:"$$$$"
376+
},
377+
{
378+
label: "escaped characters",
379+
token: "\\n",
380+
desc: "Escaped characters compatible with the JS string format, such as <code>\\n</code>, <code>\\t</code>, <code>\\x09</code>, & <code>\\u0009</code> are supported in the substitution string."
375381
}
376382
]
377383
},

0 commit comments

Comments
 (0)