The example does not render `_How ya doin!_` properly because `!` is not in `_baseCharacters`. Why not use `RegExp(r"_[^_]+_")` for italics? ...why not use a capturing group `RegExp(r"_([^_]+)_")` so that you don't need `postProcess`?
The example does not render
_How ya doin!_properly because!is not in_baseCharacters.Why not use
RegExp(r"_[^_]+_")for italics?...why not use a capturing group
RegExp(r"_([^_]+)_")so that you don't needpostProcess?