From 2eff2b6306cc5db64fa444ae070849ec547f038a Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Wed, 25 May 2022 16:31:55 -0400 Subject: pdf output links, should user choose to have it --- src/doc_reform/io_out/metadata.d | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/doc_reform/io_out/metadata.d') diff --git a/src/doc_reform/io_out/metadata.d b/src/doc_reform/io_out/metadata.d index 9d6d57a..e3c04c1 100644 --- a/src/doc_reform/io_out/metadata.d +++ b/src/doc_reform/io_out/metadata.d @@ -344,6 +344,7 @@ string theme_light_1 = format(q"┃ } auto pth_html = spinePathsHTML!()(doc_matters.output_path, doc_matters.src.language); auto pth_epub = spinePathsEPUB!()(doc_matters.output_path, doc_matters.src.language); + auto pth_pdf = spinePathsPDF!()(doc_matters); auto pth_pod = spinePathsPods!()(doc_matters); metadata_ ~= format(q"┃ @@ -403,7 +404,15 @@ string theme_light_1 = format(q"┃ ~ "[" ~ " ▤ html seg ]" ~ "[" - ~ " ◆ epub ]

"; + ~ " ◆ epub ]"; + if (doc_matters.opt.action.html_pdf_link) { + metadata_ ~= "[" + ~ " □ a4 pdf ]

"; + } else { + metadata_ ~= "

"; + } if (doc_matters.conf_make_meta.meta.classify_topic_register_arr.length > 0) { metadata_ ~= "

Topics:

"; string[] _top = ["", "", "", "", ""]; -- cgit v1.2.3