Text Parsing - My Parser Skipping commands
- by The.Anti.9
I'm trying to parse text-formatting. I want to mark inline code, much like SO does, with backticks (`). The rule is supposed to be that if you want to use a backtick inside of an inline code element, You should use double backticks around the inline code.
like this:
`` mark inline code with backticks ( ` ) ``
My parser seems to skip over the…