diff options
author | Ralph Amissah <ralph@amissah.com> | 2015-10-20 21:55:11 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2015-10-20 23:10:37 -0400 |
commit | 4c6c9216390f7dee4552846ee17f2bcb3402b43c (patch) | |
tree | 15750b24ed5cda482908fad4cfad73f7477423a2 /lib/sdp/ao_emitter.d | |
parent | literate programming introduced, tangle not yet run (diff) |
.d files made, emacs org babel tangle run on .org files
Diffstat (limited to 'lib/sdp/ao_emitter.d')
-rw-r--r-- | lib/sdp/ao_emitter.d | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/sdp/ao_emitter.d b/lib/sdp/ao_emitter.d index dd7103d..c9b1a7e 100644 --- a/lib/sdp/ao_emitter.d +++ b/lib/sdp/ao_emitter.d @@ -1,6 +1,6 @@ /* -#+OPTIONS: ^:nil _:nil#+OPTIONS: ^:nil _:nil -* sisu_emitter.d + emitters + ao_emitters.d */ mixin template Emitters() { mixin InternalMarkup; @@ -420,7 +420,6 @@ mixin template Emitters() { } } class ObjAttrib : AssertObjAttrib { -// auto sink = appender!(char[])(); auto attrib = new ObjAttributes(); string[string] obj_attrib; string obj_attributes(string obj_is_, string obj_raw, string node) @@ -1027,6 +1026,9 @@ mixin template Emitters() { int counter ) in { + // endnotes/ footnotes for + // doc objects other than paragraphs & headings + // various forms of grouped text assert((contents_arbitrary_max_length_set[counter]["is"] == "para") || (contents_arbitrary_max_length_set[counter]["is"] == "heading")); assert(counter > previous_count); @@ -1150,6 +1152,9 @@ mixin template Emitters() { int count_biblio_entry; count_biblio_entry=0; foreach (bibent; biblio_unordered) { + // update bib to include deemed_author, needed for: + // sort_bibliography_array_by_deemed_author_year_title + // either: sort on multiple fields, or; create such sort field JSONValue j = parseJSON(bibent); if (!empty(j["fulltitle"].str)) { if (!empty(j["author_raw"].str)) { |