From 602bc01129a5f0900fd7ceefb2770b297ea299d4 Mon Sep 17 00:00:00 2001
From: Ralph Amissah
Digests:
"; +metadata_ ~= "" + ~ doc_matters.doc_digest.markup_doc.toHexString + ~ " - src doc digest" + ~ "
" + ~ "" + ~ doc_matters.doc_digest.header.toHexString + ~ " - doc header" + ~ "
" + ~ "" + ~ doc_matters.doc_digest.text.toHexString + ~ " - doc text" + ~ "
"; if (doc_matters.conf_make_meta.meta.classify_topic_register_arr.length > 0) { metadata_ ~= "Topics:
"; string[] _top = ["", "", "", "", ""]; @@ -275,7 +290,7 @@ metadata_write_output(doc_matters, metadata_); #+NAME: output_metadata_write #+BEGIN_SRC d -void metadata_write_output(M)(M doc_matters, string[] metadata_) { +void metadata_write_output(M)(M doc_matters, char[] metadata_) { auto pth_html = spinePathsHTML!()(doc_matters.output_path, doc_matters.src.language); try { if (!exists(pth_html.base)) { @@ -284,7 +299,7 @@ void metadata_write_output(M)(M doc_matters, string[] metadata_) { { auto f = File(pth_html.fn_scroll("metadata." ~ doc_matters.src.filename), "w"); foreach (o; metadata_) { - f.writeln(o); + f.write(o); } } if (!exists(pth_html.base ~ "/index.html")) { -- cgit v1.2.3