From aed5f5e37934a0c2ba51a6c9582a1c4d8c3f7be2 Mon Sep 17 00:00:00 2001 From: Carsten Gips Date: Wed, 8 Aug 2018 11:52:43 +0200 Subject: [PATCH] custom-titlepage: change color from "ffffff" to "FFFFFF" to should avoid LaTeX complaining about a wrong color: pandoc custom-titlepage/custom-titlepage.md -o custom-titlepage/custom-titlepage.pdf --from markdown --template ../eisvogel.latex --listings Error producing PDF. ! Missing number, treated as zero. f l.339 \color[HTML]{ffffff} --- examples/custom-titlepage/custom-titlepage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/custom-titlepage/custom-titlepage.md b/examples/custom-titlepage/custom-titlepage.md index 0ba3fc5..dfc97b2 100644 --- a/examples/custom-titlepage/custom-titlepage.md +++ b/examples/custom-titlepage/custom-titlepage.md @@ -7,8 +7,8 @@ keywords: [Markdown, Example] subtitle: "Aesculeae domus vincemur et Veneris adsuetus lapsum" titlepage: true titlepage-color: "06386e" -titlepage-text-color: "ffffff" -titlepage-rule-color: "ffffff" +titlepage-text-color: "FFFFFF" +titlepage-rule-color: "FFFFFF" titlepage-rule-height: 1 ...