Make control code format explainer italic

This commit is contained in:
The Magician 2023-11-05 19:04:00 +00:00
parent 843de6337c
commit 6558464cb0
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ section_anatomy() {
printf 'Overall, a control sequence is formatted like so:\n' printf 'Overall, a control sequence is formatted like so:\n'
newline newline
printf '0x1B + [ + <zero or more numbers, separated by semicolons> + <a letter>\n' printf '\e[3m0x1B + [ + <zero or more numbers, separated by semicolons> + <a letter>\e[0m\n'
newline newline
printf 'The CSI sequence we''ve gone over already. The easiest way to think about this is that the letter is the name of a function, and the semicolon-delimited numbers are the arguments to said function.\n' printf 'The CSI sequence we''ve gone over already. The easiest way to think about this is that the letter is the name of a function, and the semicolon-delimited numbers are the arguments to said function.\n'
printf 'By this model of thinking about escape sequences like function calls means you would read "\\e[0;1;34m" as m(0, 1, 34), and "\\e[A" as A().\n' printf 'By this model of thinking about escape sequences like function calls means you would read "\\e[0;1;34m" as m(0, 1, 34), and "\\e[A" as A().\n'