aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/output.org
diff options
context:
space:
mode:
Diffstat (limited to 'org/output.org')
-rw-r--r--org/output.org34
1 files changed, 17 insertions, 17 deletions
diff --git a/org/output.org b/org/output.org
index 0bad148..976fcdd 100644
--- a/org/output.org
+++ b/org/output.org
@@ -13,7 +13,7 @@
#+TAGS: assert(a) class(c) debug(d) mixin(m) sdp(s) tangle(T) template(t) WEB(W) noexport(n)
[[./sdp.org][sdp]] [[./][org/]]
-* Code Outline / Structure (tangles) :tangle:
+* Code Skeleton / Outline / Structure (tangles) :tangle:
** output hub template file [#A]
#+BEGIN_SRC d :tangle ../src/sdp/output_hub.d
@@ -126,13 +126,13 @@ auto html_heading(O)(
</div>¶",
obj.obj_cite_number,
obj.obj_cite_number,
- obj.heading_attrib.lev_int_markup,
+ obj.heading_lev_markup,
obj.is_a,
obj.obj_cite_number,
obj.obj_cite_number,
tags,
- obj.object,
- obj.heading_attrib.lev_int_markup
+ obj.text,
+ obj.heading_lev_markup,
);
return o;
}
@@ -157,10 +157,10 @@ auto html_para(O)(
obj.obj_cite_number,
obj.obj_cite_number,
obj.is_a,
- obj.para_attrib.indent_start,
- obj.para_attrib.indent_rest,
+ obj.indent_hang,
+ obj.indent_base,
tags,
- obj.object
+ obj.text
);
} else {
o = format(q"¶ <div class="substance">
@@ -172,11 +172,11 @@ auto html_para(O)(
obj.obj_cite_number,
obj.obj_cite_number,
obj.is_a,
- obj.para_attrib.indent_start,
- obj.para_attrib.indent_rest,
+ obj.indent_hang,
+ obj.indent_base,
obj.obj_cite_number,
tags,
- obj.object
+ obj.text
);
}
return o;
@@ -201,7 +201,7 @@ auto html_nugget(O)(
obj.obj_cite_number,
obj.is_a,
obj.obj_cite_number,
- obj.object
+ obj.text
);
return o;
}
@@ -258,9 +258,9 @@ auto html_toc(O)(
</p>
</div>¶",
obj.is_a,
- obj.para_attrib.indent_start,
- obj.para_attrib.indent_rest,
- obj.object
+ obj.indent_hang,
+ obj.indent_base,
+ obj.text
);
return o;
}
@@ -278,9 +278,9 @@ auto html_endnote(O)(
%s
</p>¶",
obj.is_a,
- obj.para_attrib.indent_start,
- obj.para_attrib.indent_rest,
- obj.object
+ obj.indent_hang,
+ obj.indent_base,
+ obj.text
);
return o;
}