I'm using the Yojson library and one of the constructors used is called `Bool (with a backtick). I'm working with OCaml source where camlp5 is used so that text surrounded by backticks is interpreted differently (e.g. the text is converted to an OCaml data structure).
The problem I'm having is that when `Bool appears in my source code, camlp5/OCaml is seeing the backtick and thinking it is the start of the quote, causing an error. How can I make sure this is interpreted as an `Bool OCaml term instead? Is there some way to temporarily turn off what campl5 does? Some kind of escape character I can use?