diff options
author | Hugo Roy <hugo@fsfe.org> | 2015-08-20 15:26:11 +0200 |
---|---|---|
committer | Hugo Roy <hugo@fsfe.org> | 2015-08-20 15:26:11 +0200 |
commit | 2b7111ddec1d031581a1008d661d6131fe9f0937 (patch) | |
tree | ed64730aa9b69445c5f3c4f9ce292a889e4a7feb | |
parent | 8ea41996bf982835ab0d7559d2801e93c8b8f91b (diff) | |
download | pandoc-2b7111ddec1d031581a1008d661d6131fe9f0937.tar.gz |
Enable to hide links as plain text (hyperref option)
Add a variable "hidelinks" to allow to hide links as plain text in LaTeX. It removes any color and borer. The variable does not need any particular argument (see https://www.tug.org/applications/hyperref/manual.html)
-rw-r--r-- | default.latex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/default.latex b/default.latex index 26684135d..bc0f34352 100644 --- a/default.latex +++ b/default.latex @@ -69,6 +69,7 @@ $endif$ citecolor=$if(citecolor)$$citecolor$$else$blue$endif$, urlcolor=$if(urlcolor)$$urlcolor$$else$blue$endif$, linkcolor=$if(linkcolor)$$linkcolor$$else$magenta$endif$, + $if(hidelinks)$hidelinks=$hidelinks$,$endif$ pdfborder={0 0 0}} \urlstyle{same} % don't use monospace font for urls $if(lang)$ |