I'm working on a technical document where I'm escaping (
and )
with (
and )
in the example code I'm displaying. I need to be able to show the readers the escaped version of the character so they can follow along in their own code, but it escapes into the character it's intended to represent. How can I prevent it from doing this so the reader can see (
and )
rather than (
and )
?
Asked
Active
Viewed 67 times
0

Optiq
- 2,835
- 4
- 33
- 68
-
1You want to escape the `&`, to rob it of its special meaning in this instance. – CBroe Jun 26 '18 at 07:52
-
Use espaced `&`: `(` – Justinas Jun 26 '18 at 07:54