diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2018-12-01 19:26:04 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2019-05-17 16:59:38 -0400 |
commit | d0ec46764b6aa5fecf55760dc177c53411fcc735 (patch) | |
tree | 3d1217253edaaeccf0b45222596f6139d88ca557 /src/doc_reform/output | |
parent | json type match, fix breakage caused by external change (diff) |
0.3.3 org mode behavior
Diffstat (limited to 'src/doc_reform/output')
-rw-r--r-- | src/doc_reform/output/hub.d | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/doc_reform/output/hub.d b/src/doc_reform/output/hub.d index 5e036dd..e8d0dc4 100644 --- a/src/doc_reform/output/hub.d +++ b/src/doc_reform/output/hub.d @@ -26,11 +26,6 @@ template outputHub() { DocReformPod!()(doc_matters); msg.vv("sisu source done"); } - if (sched == outTask.sqlite) { - msg.v("sqlite processing... "); - SQLiteHubDiscreteBuildTablesAndPopulate!()(doc_matters, doc_abstraction); - msg.vv("sqlite done"); - } if (sched == outTask.epub) { msg.v("epub3 processing... "); outputEPub3!()(doc_abstraction, doc_matters); @@ -51,6 +46,11 @@ template outputHub() { outputHTML!().images_cp(doc_matters); msg.vv("html css & images done"); } + if (sched == outTask.sqlite) { + msg.v("sqlite processing... "); + SQLiteHubDiscreteBuildTablesAndPopulate!()(doc_matters, doc_abstraction); + msg.vv("sqlite done"); + } } if (!(doc_matters.opt.action.parallelise_subprocesses)) { foreach(schedule; doc_matters.opt.action.output_task_scheduler) { |