(Apologies if this has come up previously, but...) is there any way to tell/configure Deepdwn to support alternative and/or custom markdown tags?
CONTEXT: Most of the markdown specs (at least those I'm aware of) are written by software engineers mostly for software engineering-type use cases. Which is great, but there are other real-world use cases where markdown support is less complete. One such use case is the digitising/encoding of "old" documents and records that were originally created with mechanical type writers. These documents frequently use underlined text for emphasis, which unfortunately isn't commonly supported by markdown specs or impls.
My "custom" markdown for this purpose is:
__Underlined__
//Italic//
**bold**
(I don't use _this_ or *this*).
Another common one not typically supported by markdowns is redacted text; text which has been blotted out. This is somewhat similar to, but stronger than, ~~strikeout~~. The intention is that the text should not readable at all. I've been using:
::darklight:: (the logical compliment of ==highlight== ).
Is this kind of thing possible?