I am creating documentation through Sphinx and restructured text, then issuing the following commands:
$ make html
$ make htmlhelp.
Once that is complete I use HTML Help Workshop to compile a chm file.
The plain HTML documentation looks good, text looks how I want it to.
However when I open the chm file all double quotes are converted to boxes:
Here's a portion of my restructured text:
Opening the FTP in Windows File Explorer
""""""""""""""""""""""""""""""""""""""""
To open the FTP in Windows File Explorer (this may need to be done through a network administrator using group policies):
- Open IE
- Go to the *Tools* menu and select *Internet Options*
- Go to the *Advanced* tab
- Check the box "*Enable ftp folder view (Outside of Internet Explorer)*"
Adding a FTP shortcut to Windows File Explorer
""""""""""""""""""""""""""""""""""""""""""""""
You may want to add a shortcut to it either on your desktop or straight under *My Computer* in Windows File Explorer. The File Explorer shortcut is useful as it only requires you to log in when you first access it during your windows session. To do so:
- Open Windows Explorer
- Right-click on "My Computer" in the navigation panel on the left
- Choose "Add new network location"
- Use the wizard to create a new network location for your FTP site
- The FTP site will now show up in My Computer as a network location. You can make shortcuts from there by right-clicking on the connection and choosing "send to" > "desktop (as shortcut)".
Entering @quot; displays literally as @quot;
How can I fix the restructured text so that both the html and htmlhelp formats display the double quotes?


makehtmlhelp? If not .rst, then my bet is that Sphinx converts straight quotes in .rst to "smart quotes" in the output, which in turn is not understood by HTML Help Workshop. If so, and depending on your Sphinx version, you will need to set eitherhtml_use_smartypantsorsmart_quotestoFalse. See sphinx-doc.org/en/stable/… - Steve PiercyLanguage=0x409. I don't have a really good idea. Do you copy your source files from a Linux machine to Windows because of$? - help-info.de