In a textarea field, how do I write literally “1. The quick brown fox…” without KirbyText rendering it into a list? Is there a way to escape the “1.” or disable certain KT shortcuts through config?
The backslash \ can be used to escape characters that would otherwise be rendered according to their Markdown function:
1\. The quick brown fox...
Thanks @sebastiangreger. It works!
I was trying to escape the number (like \1.) to no avail, haha. 