Skip to content

Commit

Permalink
match build rules from Markdown action
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisfenner committed Dec 17, 2023
1 parent 87ccba3 commit 7b4ca04
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -265,13 +265,13 @@ if [ -n "${pdf_output}" ]; then
--template=eisvogel.latex \
--filter=mermaid-filter \
--filter=pandoc-crossref \
--lua-filter=table-rules.lua \
--lua-filter=parse-html.lua \
--resource-path=.:/resources \
--data-dir=/resources \
--top-level-division=section \
--variable=block-headings \
--variable=numbersections \
--variable=table-use-row-colors \
--metadata=date-english:"${DATE_ENGLISH}" \
--metadata=year:"${YEAR}" \
--metadata=titlepage:true \
Expand All @@ -280,7 +280,7 @@ if [ -n "${pdf_output}" ]; then
--metadata=titlepage-rule-height:0 \
--metadata=colorlinks:true \
--metadata=contact:[email protected] \
--from=markdown+implicit_figures+grid_tables+table_captions-citations-markdown_in_html_blocks \
--from=markdown+implicit_figures+grid_tables+table_captions-markdown_in_html_blocks \
${extra_pandoc_options} \
--to=pdf \
"${build_dir}/${input_file}.3" \
Expand All @@ -298,13 +298,13 @@ if [ -n "${latex_output}" ]; then
--template=eisvogel.latex \
--filter=mermaid-filter \
--filter=pandoc-crossref \
--lua-filter=table-rules.lua \
--lua-filter=parse-html.lua \
--resource-path=.:/resources \
--data-dir=/resources \
--top-level-division=section \
--variable=block-headings \
--variable=numbersections \
--variable=table-use-row-colors \
--metadata=date-english:"${DATE_ENGLISH}" \
--metadata=year:"${YEAR}" \
--metadata=titlepage:true \
Expand All @@ -313,7 +313,7 @@ if [ -n "${latex_output}" ]; then
--metadata=titlepage-rule-height:0 \
--metadata=colorlinks:true \
--metadata=contact:[email protected] \
--from=markdown+implicit_figures+grid_tables+table_captions-citations-markdown_in_html_blocks \
--from=markdown+implicit_figures+grid_tables+table_captions-markdown_in_html_blocks \
${extra_pandoc_options} \
--to=latex \
"${build_dir}/${input_file}.3" \
Expand All @@ -334,7 +334,7 @@ if [ -n "${docx_output}" ]; then
--lua-filter=parse-html.lua \
--resource-path=.:/resources \
--data-dir=/resources \
--from=markdown+implicit_figures+grid_tables+table_captions-citations-markdown_in_html_blocks \
--from=markdown+implicit_figures+grid_tables+table_captions-markdown_in_html_blocks \
--reference-doc=/resources/templates/tcg_template.docx \
${extra_pandoc_options} \
--to=docx \
Expand Down

0 comments on commit 7b4ca04

Please sign in to comment.