Add outline for The Missing Chapters
This commit is contained in:
parent
9d4f30f40a
commit
fc883ad9b5
|
@ -296,6 +296,12 @@ section_bright_colors() {
|
||||||
printf "\e[97m\\\e[97m White\e[0m \e[107m\\\e[107m White\e[0m\n"
|
printf "\e[97m\\\e[97m White\e[0m \e[107m\\\e[107m White\e[0m\n"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
section_dim_colors() {
|
||||||
|
title "Code 2; Dim Color"
|
||||||
|
|
||||||
|
printf "TODO\n"
|
||||||
|
}
|
||||||
|
|
||||||
section_italics() {
|
section_italics() {
|
||||||
title "Code 3; Italics"
|
title "Code 3; Italics"
|
||||||
|
|
||||||
|
@ -379,6 +385,18 @@ section_inverse() {
|
||||||
printf "\e[7;37m\\\e[7;37m Light grey\e[0m \e[7;47m\\\e[7;47m Light grey\e[0m\n"
|
printf "\e[7;37m\\\e[7;37m Light grey\e[0m \e[7;47m\\\e[7;47m Light grey\e[0m\n"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
section_conceal() {
|
||||||
|
title "Code 8; Conceal, or Hide"
|
||||||
|
|
||||||
|
printf "TODO\n"
|
||||||
|
}
|
||||||
|
|
||||||
|
section_strikethrough() {
|
||||||
|
title "Code 9; Strikethrough"
|
||||||
|
|
||||||
|
printf "TODO\n"
|
||||||
|
}
|
||||||
|
|
||||||
section_using_escape_sequences_in_shell_prompt() {
|
section_using_escape_sequences_in_shell_prompt() {
|
||||||
title "Using Escape Sequences in Shell Prompts"
|
title "Using Escape Sequences in Shell Prompts"
|
||||||
|
|
||||||
|
@ -409,7 +427,7 @@ section_table_of_all_sgr_commands() {
|
||||||
if test "$i" -lt "100"; then printf " "; fi
|
if test "$i" -lt "100"; then printf " "; fi
|
||||||
printf " "
|
printf " "
|
||||||
done
|
done
|
||||||
newline
|
newline 2
|
||||||
|
|
||||||
printf "Note that not all capabilities will necessarily be shown; codes 38 and 48, for example, require extra parameters in order to do anything (to select from the 8-bit or 24-bit color palette).\n"
|
printf "Note that not all capabilities will necessarily be shown; codes 38 and 48, for example, require extra parameters in order to do anything (to select from the 8-bit or 24-bit color palette).\n"
|
||||||
}
|
}
|
||||||
|
@ -469,6 +487,9 @@ main() {
|
||||||
section_bright_colors
|
section_bright_colors
|
||||||
newline
|
newline
|
||||||
|
|
||||||
|
section_dim_colors
|
||||||
|
newline
|
||||||
|
|
||||||
section_italics
|
section_italics
|
||||||
newline
|
newline
|
||||||
|
|
||||||
|
@ -481,6 +502,12 @@ main() {
|
||||||
section_inverse
|
section_inverse
|
||||||
newline
|
newline
|
||||||
|
|
||||||
|
section_conceal
|
||||||
|
newline
|
||||||
|
|
||||||
|
section_strikethrough
|
||||||
|
newline
|
||||||
|
|
||||||
section_using_escape_sequences_in_shell_prompt
|
section_using_escape_sequences_in_shell_prompt
|
||||||
newline
|
newline
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue