foo 1 foo 2 foo 3 foo 4
foo 5 foo 6 foo 7 foo 8
foo 9 foo 10
123456789012...
Code
local({
cat_line(x)
cat_line(ansi_toupper(x))
})
Output
Red normal green
RED NORMAL GREEN
Code
local({
cat_line(x)
cat_line(ansi_toupper(x))
})
Output
[31mRed [39mnormal [1m[32mgreen[39m[22m
[31mRED [39mNORMAL [1m[32mGREEN[39m[22m
Code
local({
cat_line(x)
cat_line(ansi_tolower(x))
})
Output
Red NORMAL grEeN
red normal green
Code
local({
cat_line(x)
cat_line(ansi_tolower(x))
})
Output
[31mRed [39mNORMAL [1m[32mgrEeN[39m[22m
[31mred [39mnormal [1m[32mgreen[39m[22m
Code
local({
cat_line(x)
cat_line(ansi_chartr(" R_", "-r*", x))
})
Output
Red normal green
red-normal-green
Code
local({
cat_line(x)
cat_line(ansi_chartr(" R_", "-r*", x))
})
Output
[31mRed [39mnormal [1m[32mgreen[39m[22m
[31mred-[39mnormal-[1m[32mgreen[39m[22m
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.