diff options
author | Ralph Amissah <ralph@amissah.com> | 2017-01-20 11:11:13 -0500 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:14 -0400 |
commit | 50ea3e06e59a8d076918e32880954ed8e0d9c26e (patch) | |
tree | 411612a1f26ae8d371b6ff56e6054660629f5ca1 /org/sdp.org | |
parent | 0.12.0 template related; doc abstraction (diff) |
output template
Diffstat (limited to 'org/sdp.org')
-rw-r--r-- | org/sdp.org | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/org/sdp.org b/org/sdp.org index 493540a..00363ca 100644 --- a/org/sdp.org +++ b/org/sdp.org @@ -198,7 +198,7 @@ mixin SiSUconfigSDLangHub; mixin SiSUmarkupRaw; mixin SiSUdocAbstraction; mixin SiSUoutputDebugs; -mixin SiSUoutputHub; +mixin outputHub; #+END_SRC **** init :init: @@ -209,7 +209,6 @@ auto raw = MarkupRaw(); auto head = HeaderDocMetadataAndMake(); auto abs = SiSUdocAbstraction(); auto dbg = SDPoutputDebugs(); -auto output = SDPoutput(); /+ struct DocumentParts { string[string][] contents; @@ -495,10 +494,7 @@ debug(checkdoc) { #+BEGIN_SRC d /+ ↓ output hub +/ if (!(_opt_action_bool["skip_output"])) { - output.hub( - doc_abstraction, - doc_matters, - ); + outputHub(doc_abstraction, doc_matters); } #+END_SRC |