Jim Gallacher wrote:
Graham Dumpleton wrote:
Jim, I have updated LaTeX documentation for the apache.import_module()
function. Can you run it through LaTeX and fixup all my wrongly closed
LaTeX
formatting. :-)
It would seem LaTeX doesn't like naked tilde characters, as ~ is used
for markup. Something like:
"""The '~/' prefix should be used."""
becomes
"""The ' /' prefix should be used."""
in the generated html.
The solution is to use \textasciitilde, so
"""The '\textasciitilde/' prefix should be used."""
becomes
"""The '~/' prefix should be used."""
Note that the "~" character can be used without substitution within
\begin{verbatim} and \end{verbatim}.
I'll fix and commit the changes to the docs.
Jim