had claude write the docs. also re-structured a bit.
This commit is contained in:
16
pandoc/makepdf.sh
Normal file
16
pandoc/makepdf.sh
Normal file
@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
INPUT_FILE="$1"
|
||||
OUTPUT_FILE="$(echo $INPUT_FILE|awk -F '.' '{print $1}').pdf"
|
||||
METADATA_FILE="$2"
|
||||
TEMPLATE="eisvogel"
|
||||
|
||||
#Recommendation for production : proper error handling / arg checking etc (as we do in our SAAS paid version of this)
|
||||
|
||||
pandoc \
|
||||
$INPUT_FILE \
|
||||
-o $OUTPUT_FILE \
|
||||
--template $TEMPLATE \
|
||||
--metadata-file=$METADATA_FILE \
|
||||
--from markdown \
|
||||
$PANDOC_OPTIONS
|
14
pandoc/metadata-file-examples/daily-stakeholder-report.yml
Normal file
14
pandoc/metadata-file-examples/daily-stakeholder-report.yml
Normal file
@ -0,0 +1,14 @@
|
||||
title: "Charles N Wyble Daily Stakeholder Report"
|
||||
titlepage: true
|
||||
author: [Charles N Wyble]
|
||||
date: \today
|
||||
toc: true
|
||||
toc-own-page: true
|
||||
header-left: "\\hspace{1cm}"
|
||||
header-center: "\\leftmark"
|
||||
header-right: "Page \\thepage"
|
||||
footer-left: "\\thetitle"
|
||||
footer-center: "Copyright ReachableCEO Enterprises LLC"
|
||||
footer-right: "\\theauthor"
|
||||
page-background: "D:/tsys/@ReachableCEO/ExternalVendorCode/pandoc-latex-template/examples/page-background/backgrounds/background5.pdf"
|
||||
titlepage-logo: "D:/tsys/@ReachableCEO/ReachableCEO.png"
|
12
pandoc/metadata-file-examples/reachableceo-resume.yml
Normal file
12
pandoc/metadata-file-examples/reachableceo-resume.yml
Normal file
@ -0,0 +1,12 @@
|
||||
title: "Charles N Wyble Resume"
|
||||
titlepage: false
|
||||
author: [Charles N Wyble]
|
||||
date: \today
|
||||
header-left: "\\hspace{1cm}"
|
||||
header-center: "\\leftmark"
|
||||
header-right: "Page \\thepage"
|
||||
footer-left: "Charles N Wyble"
|
||||
footer-right: "[Source code for this resume](https://git.knownelement.com/reachableceo/ReachableCEOResume) "
|
||||
footer-center: "Tenacity. Velocity. Focus"
|
||||
urlcolor: blue
|
||||
page-background: "D:/tsys/@ReachableCEO/ExternalVendorCode/pandoc-latex-template/examples/page-background/backgrounds/background5.pdf"
|
Reference in New Issue
Block a user