I am creating a deck for a programming language.
To help learning functions I want to add mems with their signatures.
For instance:
void parse_str ( string $encoded_string [, array &$result ] )
I use ** for bold and _ for italic.
But underscores inside function and argument names affect formatting, I get:
void parsestr ( string $encoded string [, array &$result ] )
A typical way to escape special characters is to use backslashes: \**
and \_
. It does work in web version, but in Android app I still get a wrong variant:
void parse\str ( string $encoded\string [, array &$result ] )
Is there a way to make it work? Even without formatting words with underscores break.