aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/output_hub.org
diff options
context:
space:
mode:
Diffstat (limited to 'org/output_hub.org')
-rw-r--r--org/output_hub.org43
1 files changed, 21 insertions, 22 deletions
diff --git a/org/output_hub.org b/org/output_hub.org
index 4f2d3e0..b2985be 100644
--- a/org/output_hub.org
+++ b/org/output_hub.org
@@ -4,16 +4,15 @@
#+FILETAGS: :spine:output:hub:
#+AUTHOR: Ralph Amissah
#+EMAIL: [[mailto:ralph.amissah@gmail.com][ralph.amissah@gmail.com]]
-#+COPYRIGHT: Copyright (C) 2015 - 2019 Ralph Amissah
+#+COPYRIGHT: Copyright (C) 2015 - 2020 Ralph Amissah
#+LANGUAGE: en
-#+STARTUP: indent content hideblocks hidestars
-#+OPTIONS: H:3 num:nil toc:t \n:nil @:t ::t |:t ^:nil _:nil -:t f:t *:t <:t
-#+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc
-#+OPTIONS: author:nil email:nil creator:nil timestamp:nil
-#+PROPERTY: header-args :padline no :exports code :cache no :noweb yes
-#+EXPORT_SELECT_TAGS: export
-#+EXPORT_EXCLUDE_TAGS: noexport
-#+TAGS: assert(a) class(c) debug(d) mixin(m) spine(s) tangle(T) template(t) WEB(W) noexport(n)
+#+STARTUP: content hideblocks hidestars noindent entitiespretty
+#+PROPERTY: header-args :exports code
+#+PROPERTY: header-args+ :noweb yes
+#+PROPERTY: header-args+ :eval no
+#+PROPERTY: header-args+ :results no
+#+PROPERTY: header-args+ :cache no
+#+PROPERTY: header-args+ :padline no
- [[./spine.org][spine]] [[./][org/]]
@@ -69,7 +68,7 @@ template outputHubOp() {
** initialize / imports
-#+name: output_imports
+#+NAME: output_imports
#+BEGIN_SRC d
import doc_reform.io_out,
doc_reform.io_out.metadata,
@@ -84,7 +83,7 @@ import doc_reform.io_out,
**** source: _dr_src_ &/or _pod_ :source:pod:
- [[./output_pod.org][output_pod]]
-#+name: output_scheduled_task
+#+NAME: output_scheduled_task
#+BEGIN_SRC d
if (sched == outTask.source_or_pod) {
if (doc_matters.opt.action.source) {
@@ -106,7 +105,7 @@ if (sched == outTask.source_or_pod) {
**** epub :epub:
-#+name: output_scheduled_task
+#+NAME: output_scheduled_task
#+BEGIN_SRC d
if (sched == outTask.epub) {
msg.v("epub3 processing... ");
@@ -119,7 +118,7 @@ if (sched == outTask.epub) {
**** html :html:
***** metadata :metadata:
-#+name: output_scheduled_task
+#+NAME: output_scheduled_task
#+BEGIN_SRC d
if (sched == outTask.html_stuff) {
outputMetadata!()(doc_matters);
@@ -129,7 +128,7 @@ if (sched == outTask.html_stuff) {
***** scroll :scroll:
-#+name: output_scheduled_task
+#+NAME: output_scheduled_task
#+BEGIN_SRC d
if (sched == outTask.html_scroll) {
msg.v("html scroll processing... ");
@@ -141,7 +140,7 @@ if (sched == outTask.html_scroll) {
***** seg :seg:
-#+name: output_scheduled_task
+#+NAME: output_scheduled_task
#+BEGIN_SRC d
if (sched == outTask.html_seg) {
msg.v("html seg processing... ");
@@ -153,7 +152,7 @@ if (sched == outTask.html_seg) {
***** css, images etc :css:images:
-#+name: output_scheduled_task
+#+NAME: output_scheduled_task
#+BEGIN_SRC d
if (sched == outTask.html_stuff) {
import doc_reform.io_out.html;
@@ -165,7 +164,7 @@ if (sched == outTask.html_stuff) {
**** latex / pdf :latex:pdf:
-#+name: output_scheduled_task
+#+NAME: output_scheduled_task
#+BEGIN_SRC d
if (sched == outTask.latex) {
msg.v("latex processing... (available for downstream processing & pdf output");
@@ -177,7 +176,7 @@ if (sched == outTask.latex) {
**** odf / odt :odf:odt:
-#+name: output_scheduled_task
+#+NAME: output_scheduled_task
#+BEGIN_SRC d
if (sched == outTask.odt) {
msg.v("odf:odt processing... ");
@@ -189,7 +188,7 @@ if (sched == outTask.odt) {
**** sqlite discrete :sqlite:
-#+name: output_scheduled_task
+#+NAME: output_scheduled_task
#+BEGIN_SRC d
if (sched == outTask.sqlite) {
msg.v("sqlite processing... ");
@@ -203,7 +202,7 @@ if (sched == outTask.sqlite) {
**** sqlite collection :sqlite:
***** update / populate :update:
-#+name: output_shared_sqlite_db
+#+NAME: output_shared_sqlite_db
#+BEGIN_SRC d
if (doc_matters.opt.action.sqlite_update) {
msg.v("sqlite update processing...");
@@ -221,7 +220,7 @@ if (doc_matters.opt.action.sqlite_update) {
***** no markup source files to process
****** drop :drop:
-#+name: output_options_op
+#+NAME: output_options_op
#+BEGIN_SRC d
if ((opt_action.sqlite_db_drop)) {
if ((opt_action.verbose)) {
@@ -237,7 +236,7 @@ if ((opt_action.sqlite_db_drop)) {
****** create :create:
-#+name: output_options_op
+#+NAME: output_options_op
#+BEGIN_SRC d
if ((opt_action.sqlite_db_create)) {
if ((opt_action.verbose)) {