Skip to content
Snippets Groups Projects
Commit b33b5170 authored by Bernward's avatar Bernward
Browse files

Fixed template filenames

parent 2e3a95e6
No related branches found
No related tags found
No related merge requests found
......@@ -310,7 +310,7 @@ markdownToHtmlPage markdownFile out = do
markdownToPdfPage :: FilePath -> FilePath -> Action ()
markdownToPdfPage markdownFile out = do
putCurrentDocument out
template <- getTemplate "page.latex"
template <- getTemplate "page.tex"
let options =
pandocWriterOpts
{ writerTemplate = Just template
......@@ -358,7 +358,7 @@ markdownToPdfHandout markdownFile out = do
putCurrentDocument out
pandoc <- readAndPreprocessMarkdown markdownFile Handout
processed <- processPandocHandout "latex" pandoc
template <- getTemplate "handout.latex"
template <- getTemplate "handout.tex"
let options =
pandocWriterOpts
{ writerTemplate = Just template
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment