diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2020-08-25 14:23:42 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2020-08-25 17:57:28 +0200 |
commit | be08e5482facaf8f3e773687df3ec5bb1243959c (patch) | |
tree | d4742be01b8872137fc0b7dbf71f87982a19a223 /src/exe | |
parent | 295dd897297722d07ec2ce5fb82e323fe495c775 (diff) | |
download | pesto-be08e5482facaf8f3e773687df3ec5bb1243959c.tar.gz pesto-be08e5482facaf8f3e773687df3ec5bb1243959c.tar.bz2 pesto-be08e5482facaf8f3e773687df3ec5bb1243959c.zip |
Fix links
pandoc does not handle internal links well for some reason, so replace
them with HTML anchors and pray for the best.
Diffstat (limited to 'src/exe')
-rw-r--r-- | src/exe/Doc.lhs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/exe/Doc.lhs b/src/exe/Doc.lhs index 63e9847..40508cb 100644 --- a/src/exe/Doc.lhs +++ b/src/exe/Doc.lhs @@ -26,10 +26,9 @@ source code. > ] > , readerStandalone = True } -.. _Pandoc: http://www.pandoc.org/ -Pandoc_ outputs a single HTML5 page with syntax highlighting and MathJax for -formulas. +`Pandoc <http://www.pandoc.org/>`_ outputs a single HTML5 page with syntax +highlighting and MathJax for formulas. > writeDoc tpl = writeHtml5String def { > writerTemplate = tpl |