aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdp/ao_object_setter.d
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2017-02-26 18:01:24 -0500
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:14 -0400
commitb11f8f104e8c3a4ab9740d086da91aa943200e6e (patch)
tree2f898df140d855b5b9c29a17decf75c5f9896c80 /src/sdp/ao_object_setter.d
parent0.13.3 tuples, sdp & doc_abstraction (flag marked up links & endnotes) (diff)
0.13.4 includes ao bookindex segname (anchors) fix
Diffstat (limited to 'src/sdp/ao_object_setter.d')
-rw-r--r--src/sdp/ao_object_setter.d18
1 files changed, 7 insertions, 11 deletions
diff --git a/src/sdp/ao_object_setter.d b/src/sdp/ao_object_setter.d
index e165d23..698c39e 100644
--- a/src/sdp/ao_object_setter.d
+++ b/src/sdp/ao_object_setter.d
@@ -22,12 +22,12 @@ template ObjectSetter() {
string text = "";
string obj_cite_number = "";
string[] anchor_tags = [];
- string marked_up_level = "9";
- int[] closes_lev_collapsed = [];
- int[] closes_lev_markup = [];
int indent_base = 0;
int indent_hang = 0;
bool bullet = false;
+ bool inline_links = false;
+ bool inline_notes_reg = false;
+ bool inline_notes_star = false;
string syntax = "";
int ocn = 0;
string segment_anchor_tag = "";
@@ -36,24 +36,20 @@ template ObjectSetter() {
int parent_lev_markup = 0;
int parent_ocn = 0;
int[] ancestors = [];
+ string marked_up_level = "9";
int heading_lev_markup = 9;
int heading_lev_collapsed = 9;
- int[] heading_closes_lev_collapsed = [];
- int[] heading_closes_lev_markup = [];
+ int[] dom_markedup = [ 0, 0, 0, 0, 0, 0, 0, 0,];
+ int[] dom_collapsed = [ 0, 0, 0, 0, 0, 0, 0, 0,];
string[] heading_ancestors_text = [ "", "", "", "", "", "", "", "", ];
+ string[] lev4_subtoc = [];
int heading_array_ptr = 0;
int ptr_doc_object = 0;
int ptr_html_segnames = 0;
int ptr_heading = 0;
int array_ptr = 0;
int heading_array_ptr_segments = 0;
- string[] lev4_subtoc = [];
string[string][string] node;
- int[] dom_markedup = [ 0, 0, 0, 0, 0, 0, 0, 0,];
- int[] dom_collapsed = [ 0, 0, 0, 0, 0, 0, 0, 0,];
- bool inline_links = false;
- bool inline_notes_reg = false;
- bool inline_notes_star = false;
}
struct TheObjects {
ObjGenericComposite[] oca;