I want to write a documentation with Sphinx using reStructuredText.
In my documentation I want to add this line of python code, which uses an apostrophe after the name jack. This apostrophe is escaped by a backslash in Python:
print('I am jack\'s raging bile duct')
When I add this to a reStructuredText (rst) file like this:
This is a simple example:
::
print('I am jack\'s raging bile duct')
after compiling to a html file I will see this:
How can I get rid of the backslash \ in my rst/Sphinx output html and still use the aposthrophe after jack and ' ?