diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2024-07-10 08:51:11 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2024-07-10 12:20:03 -0400 |
commit | 18bdad0fd7ced5fecb39e9e73d7c4bd9a3956c6f (patch) | |
tree | e3399ab289ecc7cf13f09822bf103cc15b55ed2f /org/out_metadata.org | |
parent | nix dlang overlay ldc-1.39.0 (diff) |
- serial processing (need to be built serially)
- multilingual pods, copy all languages before zip
Diffstat (limited to 'org/out_metadata.org')
-rw-r--r-- | org/out_metadata.org | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/org/out_metadata.org b/org/out_metadata.org index d43adf2..52a2481 100644 --- a/org/out_metadata.org +++ b/org/out_metadata.org @@ -28,7 +28,7 @@ module sisudoc.io_out.metadata; // @safe: template outputMetadata() { - void outputMetadata(T)(T doc_matters) { + void outputMetadata(T)(T doc_matters) { <<curated_html_search>> <<output_imports>> <<curated_html_themes_0>> @@ -188,11 +188,6 @@ if (doc_matters.opt.action.html_link_markup_source) { } } } -metadata_ ~= "<p class=\"lev2\"><tt>" - ~ doc_matters.doc_digest.markup_doc.toHexString - ~ "</tt> - " - ~ doc_matters.src.filename - ~ "</p>"; if (doc_matters.conf_make_meta.meta.classify_topic_register_arr.length > 0) { metadata_ ~= "<hr /><p class=\"lev0\">Topics:</p>"; string[] _top = ["", "", "", "", ""]; @@ -324,9 +319,7 @@ void metadata_write_output(M)(M doc_matters, char[] metadata_) { } catch (ErrnoException ex) { // Handle error } - if (doc_matters.opt.action.vox_gt0) { - writeln(" ", pth_html.fn_scroll("metadata." ~ doc_matters.src.filename)); - } + if (doc_matters.opt.action.vox_gt0) { writeln(" ", pth_html.fn_scroll("metadata." ~ doc_matters.src.filename)); } } #+END_SRC |