aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sisudoc/share
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2026-05-25 10:21:59 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2026-05-25 12:20:54 -0400
commitdb3dd3c3a5f4c5cde9a736cb688f05af9f79d718 (patch)
tree1ce0c71cbeeae23566001904b9de3609ced76ebe /src/sisudoc/share
parent0.22.0 (diff)
separate abstraction lib from output processing
create new directories under ./src/sisudoc ocda & outputs in order to separate the document abstraction library from downstream output processing (stuff broken till paths & modules fixed)
Diffstat (limited to 'src/sisudoc/share')
-rw-r--r--src/sisudoc/share/defaults.d72
1 files changed, 0 insertions, 72 deletions
diff --git a/src/sisudoc/share/defaults.d b/src/sisudoc/share/defaults.d
deleted file mode 100644
index 4972992..0000000
--- a/src/sisudoc/share/defaults.d
+++ /dev/null
@@ -1,72 +0,0 @@
-/+
-- Name: SisuDoc Spine, Doc Reform [a part of]
- - Description: documents, structuring, processing, publishing, search
- - static content generator
-
- - Author: Ralph Amissah
- [ralph.amissah@gmail.com]
-
- - Copyright: (C) 2015 (continuously updated, current 2026) Ralph Amissah, All Rights Reserved.
-
- - License: AGPL 3 or later:
-
- Spine (SiSU), a framework for document structuring, publishing and
- search
-
- Copyright (C) Ralph Amissah
-
- This program is free software: you can redistribute it and/or modify it
- under the terms of the GNU AFERO General Public License as published by the
- Free Software Foundation, either version 3 of the License, or (at your
- option) any later version.
-
- This program is distributed in the hope that it will be useful, but WITHOUT
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- more details.
-
- You should have received a copy of the GNU General Public License along with
- this program. If not, see [https://www.gnu.org/licenses/].
-
- If you have Internet connection, the latest version of the AGPL should be
- available at these locations:
- [https://www.fsf.org/licensing/licenses/agpl.html]
- [https://www.gnu.org/licenses/agpl.html]
-
- - Spine (by Doc Reform, related to SiSU) uses standard:
- - docReform markup syntax
- - standard SiSU markup syntax with modified headers and minor modifications
- - docReform object numbering
- - standard SiSU object citation numbering & system
-
- - Homepages:
- [https://www.sisudoc.org]
- [https://www.doc-reform.org]
-
- - Git
- [https://git.sisudoc.org/]
-
-+/
-/++
- shared default settings
-+/
-module sisudoc.share.defaults;
-@safe:
-template Msg() {
- import std.stdio;
- auto Msg(I)(I doc_matters) {
- struct Msg_ {
- void v()(string message) {
- if (doc_matters.opt.action.vox_gt_2) {
- writeln(message);
- }
- }
- void vv()(string message) {
- if (doc_matters.opt.action.vox_gt_3) {
- writeln(message);
- }
- }
- }
- return Msg_();
- }
-}