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 /src/sisudoc/io_out/metadata.d | |
| parent | nix dlang overlay ldc-1.39.0 (diff) | |
pod zip fixes
- serial processing (need to be built serially)
- multilingual pods, copy all languages before zip
Diffstat (limited to 'src/sisudoc/io_out/metadata.d')
| -rw-r--r-- | src/sisudoc/io_out/metadata.d | 11 | 
1 files changed, 2 insertions, 9 deletions
| diff --git a/src/sisudoc/io_out/metadata.d b/src/sisudoc/io_out/metadata.d index 95fc465..0917969 100644 --- a/src/sisudoc/io_out/metadata.d +++ b/src/sisudoc/io_out/metadata.d @@ -50,7 +50,7 @@  module sisudoc.io_out.metadata;  // @safe:  template outputMetadata() { -  void outputMetadata(T)(T  doc_matters) { +  void outputMetadata(T)(T doc_matters) {      string inline_search_form(M)(        M  doc_matters,      ) { @@ -393,9 +393,7 @@ string theme_light_1 = format(q"┃        } 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)); }      }      static auto mkup = InlineMarkup();      import sisudoc.io_out.html_snippet; @@ -524,11 +522,6 @@ string theme_light_1 = format(q"┃          }        }      } -    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 = ["", "", "", "", ""]; | 
