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`?