aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/out_xmls.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2024-04-10 22:24:34 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2024-04-10 23:08:18 -0400
commit90873fabd7451e1dd8c4b39303906e19bdc481f7 (patch)
tree2dbb0e41f3e9c761645c8b37dafe979a01d38d32 /org/out_xmls.org
parent0.15.0 (diff)
0.16.0 sisudoc (src/sisudoc sisudoc spine)
- src/sisudoc (replaces src/doc_reform) - sisudoc spine (used more)
Diffstat (limited to 'org/out_xmls.org')
-rw-r--r--org/out_xmls.org50
1 files changed, 25 insertions, 25 deletions
diff --git a/org/out_xmls.org b/org/out_xmls.org
index e9f8d79..c3b9aab 100644
--- a/org/out_xmls.org
+++ b/org/out_xmls.org
@@ -1,5 +1,5 @@
-*- mode: org -*-
-#+TITLE: spine (doc_reform) output xmls
+#+TITLE: sisudoc spine (doc_reform) output xmls
#+DESCRIPTION: documents - structuring, publishing in multiple formats & search
#+FILETAGS: :spine:output:xml:
#+AUTHOR: Ralph Amissah
@@ -27,11 +27,11 @@
** format xhtml objects :format:
*** _module template_ :module:
-#+HEADER: :tangle "../src/doc_reform/io_out/xmls.d"
+#+HEADER: :tangle "../src/sisudoc/io_out/xmls.d"
#+HEADER: :noweb yes
#+BEGIN_SRC d
<<doc_header_including_copyright_and_license>>
-module doc_reform.io_out.xmls;
+module sisudoc.io_out.xmls;
@safe:
template outputXHTMLs() {
<<output_imports_xml>>
@@ -97,13 +97,13 @@ import
std.uri,
std.conv : to;
import
- doc_reform.io_out,
- doc_reform.io_out.rgx,
- doc_reform.meta.rgx_files,
- doc_reform.io_out.rgx_xhtml,
- doc_reform.io_out.create_zip_file,
- doc_reform.io_out.xmls,
- doc_reform.io_out.xmls_css;
+ sisudoc.io_out,
+ sisudoc.io_out.rgx,
+ sisudoc.meta.rgx_files,
+ sisudoc.io_out.rgx_xhtml,
+ sisudoc.io_out.create_zip_file,
+ sisudoc.io_out.xmls,
+ sisudoc.io_out.xmls_css;
#+END_SRC
**** epub3
@@ -117,12 +117,12 @@ import
std.zip,
std.conv : to;
import
- doc_reform.io_out,
- doc_reform.io_out.rgx,
- doc_reform.io_out.rgx_xhtml,
- doc_reform.io_out.create_zip_file,
- doc_reform.io_out.xmls,
- doc_reform.io_out.xmls_css;
+ sisudoc.io_out,
+ sisudoc.io_out.rgx,
+ sisudoc.io_out.rgx_xhtml,
+ sisudoc.io_out.create_zip_file,
+ sisudoc.io_out.xmls,
+ sisudoc.io_out.xmls_css;
#+END_SRC
*** misc
@@ -1757,11 +1757,11 @@ string table(O,M)(
* _html_ [#A] :html:
** _module template_ :module:
-#+HEADER: :tangle "../src/doc_reform/io_out/html.d"
+#+HEADER: :tangle "../src/sisudoc/io_out/html.d"
#+HEADER: :noweb yes
#+BEGIN_SRC d
<<doc_header_including_copyright_and_license>>
-module doc_reform.io_out.html;
+module sisudoc.io_out.html;
@safe:
template outputHTML() {
<<output_imports_xml>>
@@ -2022,7 +2022,7 @@ scroll_write_output(doc, doc_matters);
}
}
if (!exists(pth_html.base ~ "/index.html")) {
- import doc_reform.io_out.html_snippet;
+ import sisudoc.io_out.html_snippet;
mixin htmlSnippet;
auto f = File(pth_html.base ~"/index.html", "w");
f.writeln(format_html_blank_page_guide_home(
@@ -2397,7 +2397,7 @@ void css(M)(M doc_matters) {
f.writeln(css.html_scroll);
}
if (!exists(pth_html.css ~ "/index.html")) {
- import doc_reform.io_out.html_snippet;
+ import sisudoc.io_out.html_snippet;
mixin htmlSnippet;
auto f = File(pth_html.css ~"/index.html", "w");
f.writeln(format_html_blank_page_guide_home(
@@ -2441,7 +2441,7 @@ void css(M)(M doc_matters) {
}
}
if (!exists(pth_html.image ~ "/index.html")) {
- import doc_reform.io_out.html_snippet;
+ import sisudoc.io_out.html_snippet;
mixin htmlSnippet;
auto f = File(pth_html.image ~"/index.html", "w");
f.writeln(format_html_blank_page_guide_home(
@@ -2476,11 +2476,11 @@ void css(M)(M doc_matters) {
** _module template_ :module:
-#+HEADER: :tangle "../src/doc_reform/io_out/epub3.d"
+#+HEADER: :tangle "../src/sisudoc/io_out/epub3.d"
#+HEADER: :noweb yes
#+BEGIN_SRC d
<<doc_header_including_copyright_and_license>>
-module doc_reform.io_out.epub3;
+module sisudoc.io_out.epub3;
@safe:
template outputEPub3() {
<<output_imports_epub>>
@@ -3185,7 +3185,7 @@ zip -0 file.epub mimetype && zip -r -9 file.epub META-INF OEBPS
pth_epub3.base.mkdirRecurse;
}
if (!exists(pth_epub3.base ~ "/index.html")) {
- import doc_reform.io_out.html_snippet;
+ import sisudoc.io_out.html_snippet;
mixin htmlSnippet;
auto f = File(pth_epub3.base ~"/index.html", "w");
f.writeln(format_html_blank_page_guide_home(
@@ -3365,7 +3365,7 @@ zip -0 file.epub mimetype && zip -r -9 file.epub META-INF OEBPS
#+NAME: doc_header_including_copyright_and_license
#+HEADER: :noweb yes
#+BEGIN_SRC emacs-lisp
-<<./spine_version_info_and_doc_header_including_copyright_and_license.org:spine_doc_header_including_copyright_and_license()>>
+<<./sisudoc_spine_version_info_and_doc_header_including_copyright_and_license.org:spine_doc_header_including_copyright_and_license()>>
#+END_SRC
* __END__