aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/out_xmls.org
diff options
context:
space:
mode:
Diffstat (limited to 'org/out_xmls.org')
-rw-r--r--org/out_xmls.org20
1 files changed, 10 insertions, 10 deletions
diff --git a/org/out_xmls.org b/org/out_xmls.org
index d29a993..54b40aa 100644
--- a/org/out_xmls.org
+++ b/org/out_xmls.org
@@ -22,8 +22,8 @@
** format xhtml objects :format:
*** _module template_ :module:
-#+BEGIN_SRC d :tangle "../src/doc_reform/output/xmls.d"
-module doc_reform.output.xmls;
+#+BEGIN_SRC d :tangle "../src/doc_reform/io_out/xmls.d"
+module doc_reform.io_out.xmls;
template outputXHTMLs() {
<<output_imports>>
mixin spineOutputRgxInit;
@@ -39,7 +39,7 @@ template outputXHTMLs() {
#+name: output_imports
#+BEGIN_SRC d
-import doc_reform.output;
+import doc_reform.io_out;
import
std.digest.sha,
std.file,
@@ -48,9 +48,9 @@ import
std.zip,
std.conv : to;
import
- doc_reform.output.create_zip_file,
- doc_reform.output.xmls,
- doc_reform.output.xmls_css;
+ doc_reform.io_out.create_zip_file,
+ doc_reform.io_out.xmls,
+ doc_reform.io_out.xmls_css;
#+END_SRC
*** misc
@@ -1514,8 +1514,8 @@ string table(O,M)(
* _html_ [#A] :html:
** _module template_ :module:
-#+BEGIN_SRC d :tangle "../src/doc_reform/output/html.d"
-module doc_reform.output.html;
+#+BEGIN_SRC d :tangle "../src/doc_reform/io_out/html.d"
+module doc_reform.io_out.html;
template outputHTML() {
<<output_imports>>
mixin outputXHTMLs;
@@ -2176,8 +2176,8 @@ void images_cp(M)(
** _module template_ :module:
-#+BEGIN_SRC d :tangle "../src/doc_reform/output/epub3.d"
-module doc_reform.output.epub3;
+#+BEGIN_SRC d :tangle "../src/doc_reform/io_out/epub3.d"
+module doc_reform.io_out.epub3;
template outputEPub3() {
<<output_imports>>
mixin InternalMarkup;