diff options
author | Ralph Amissah <ralph@amissah.com> | 2016-12-11 11:17:06 -0500 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:13 -0400 |
commit | 762439ade3de42d2043fafc0005b255c6c58ba49 (patch) | |
tree | 9d1c66d345bffd1b15002265e73c97c1fc92c70d /org/output.org | |
parent | 0.9.6 node info, and output continued (diff) |
0.10.0 generic object (ObjGenericComposite), removed "object_set"
Diffstat (limited to 'org/output.org')
-rw-r--r-- | org/output.org | 34 |
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; } |