aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/output_xmls.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2018-09-10 18:15:02 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2019-04-10 15:14:15 -0400
commite95c49b76f4ac7bf72c383ee43a0567dfcbf1603 (patch)
treeb3aec9058f69be0047bb526052f8deefb5d97463 /org/output_xmls.org
parentmaker, subprojects arrange, minor (diff)
0.1.0 renamed doc-reform, doc_reform (& rad)
- from sdp
Diffstat (limited to 'org/output_xmls.org')
-rw-r--r--org/output_xmls.org43
1 files changed, 21 insertions, 22 deletions
diff --git a/org/output_xmls.org b/org/output_xmls.org
index 6be553f..78f7bfb 100644
--- a/org/output_xmls.org
+++ b/org/output_xmls.org
@@ -1,8 +1,8 @@
-#+TITLE: sdp output xmls
+#+TITLE: doc_reform output xmls
+#+DESCRIPTION: documents - structuring, publishing in multiple formats & search
+#+FILETAGS: :doc_reform:output:xmls:
#+AUTHOR: Ralph Amissah
#+EMAIL: [[mailto:ralph.amissah@gmail.com][ralph.amissah@gmail.com]]
-#+DESCRIPTION: documents - structuring, publishing in multiple formats & search
-#+KEYWORDS
#+LANGUAGE: en
#+STARTUP: indent content
#+OPTIONS: H:3 num:nil toc:t \n:nil @:t ::t |:t ^:nil _:nil -:t f:t *:t <:t
@@ -11,18 +11,17 @@
#+PROPERTY: header-args :padline no :exports code :noweb yes
#+EXPORT_SELECT_TAGS: export
#+EXPORT_EXCLUDE_TAGS: noexport
-#+FILETAGS: :sdp:rel:output:xmls:
-#+TAGS: assert(a) class(c) debug(d) mixin(m) sdp(s) tangle(T) template(t) WEB(W) noexport(n)
+#+TAGS: assert(a) class(c) debug(d) mixin(m) doc_reform(s) tangle(T) template(t) WEB(W) noexport(n)
-- [[./sdp.org][sdp]] [[./][org/]]
+- [[./doc_reform.org][doc_reform]] [[./][org/]]
- [[./output_hub.org][output_hub]]
-* xml offspring (xhtml html epub) :module:sdp:output_xmls:
+* xml offspring (xhtml html epub) :module:
** format xhtml objects :format:
*** 0. module template
-#+BEGIN_SRC d :tangle ../src/sdp/output/xmls.d
-module sdp.output.xmls;
+#+BEGIN_SRC d :tangle ../src/doc_reform/output/xmls.d
+module doc_reform.output.xmls;
template outputXHTMLs() {
<<output_imports>>
mixin SiSUoutputRgxInit;
@@ -38,7 +37,7 @@ template outputXHTMLs() {
#+name: output_imports
#+BEGIN_SRC d
-import sdp.output;
+import doc_reform.output;
import
std.digest.sha,
std.file,
@@ -46,9 +45,9 @@ import
std.zip,
std.conv : to;
import
- sdp.output.create_zip_file,
- sdp.output.xmls,
- sdp.output.xmls_css;
+ doc_reform.output.create_zip_file,
+ doc_reform.output.xmls,
+ doc_reform.output.xmls_css;
#+END_SRC
*** misc
@@ -186,7 +185,7 @@ auto header_metadata(M)(
string _date_modified="Date";
string _language="en";
string _rights="Copyright: Copyright (C) year holder";
- string _generator="sdp [SiSU 7.1.8 of 2016w08/5 (2016-02-26)] (n*x and D)";
+ string _generator="doc_reform [SiSU 7.1.8 of 2016w08/5 (2016-02-26)] (n*x and D)";
string _generator_home="http://www.sisudoc.org";
string o;
o = format(q"ΒΆ<!-- SiSU header metadata -->
@@ -380,7 +379,7 @@ auto epub3_seg_head(M)(
<meta name="dc.date.modified" content="year" />
<meta name="dc.language" content="US" />
<meta name="dc.rights" content="Copyright: Copyright (C) year holder" />
- <meta name="generator" content="sdp [SiSU 7.1.8 of 2016w08/5 (2016-02-26)] (n*x and D)" />
+ <meta name="generator" content="doc_reform [SiSU 7.1.8 of 2016w08/5 (2016-02-26)] (n*x and D)" />
<link rel="generator" href="http://www.sisudoc.org/" />
<link rel="shortcut icon" href="../_sisu/image/rb7.ico" />
<link rel="stylesheet" href="css/epub.css" type="text/css" id="main-css" />
@@ -1333,11 +1332,11 @@ auto endnote(O)(
}
#+END_SRC
-* _html_ [#A] :module:sdp:output_html:
+* _html_ [#A] :module:doc_reform:output_html:
** module template
-#+BEGIN_SRC d :tangle ../src/sdp/output/html.d
-module sdp.output.html;
+#+BEGIN_SRC d :tangle ../src/doc_reform/output/html.d
+module doc_reform.output.html;
template outputHTML() {
<<output_imports>>
mixin outputXHTMLs;
@@ -1823,7 +1822,7 @@ void css(M)(
}
#+END_SRC
-** images :images:
+** images :images:
#+name: copy_html_images
#+BEGIN_SRC d
@@ -1852,7 +1851,7 @@ void images_cp(M)(
}
#+END_SRC
-* _epub_ [#B] :module:sdp:output_epub3:
+* _epub_ [#B] :module:doc_reform:output_epub3:
|-----------------------+--------------------------+---------------------------+----------------------------------|
| function | filename | module | variable |
@@ -1872,8 +1871,8 @@ void images_cp(M)(
** module template
-#+BEGIN_SRC d :tangle ../src/sdp/output/epub3.d
-module sdp.output.epub3;
+#+BEGIN_SRC d :tangle ../src/doc_reform/output/epub3.d
+module doc_reform.output.epub3;
template outputEPub3() {
<<output_imports>>
mixin InternalMarkup;