diff options
Diffstat (limited to 'org/out_sqlite.org')
| -rw-r--r-- | org/out_sqlite.org | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/org/out_sqlite.org b/org/out_sqlite.org index 0f61a03..0d1bbef 100644 --- a/org/out_sqlite.org +++ b/org/out_sqlite.org @@ -673,7 +673,7 @@ string inline_notes_scroll(M,O)(  #+name: sanitize_and_munge_inline_html  #+BEGIN_SRC d -auto inline_notes_seg(M,O)( +Tuple!(string, string) inline_notes_seg(M,O)(                 M     doc_matters,    const        O     obj,    string             _txt, @@ -706,7 +706,7 @@ auto inline_notes_seg(M,O)(        writeln(__LINE__, " endnote: ", obj.metainfo.is_a, ": ", obj.text);      }    } -  auto t = tuple( +  Tuple!(string, string) t = tuple(      _txt,      _endnotes,    ); @@ -926,7 +926,7 @@ string html_table(M,O)(    assert(obj.metainfo.is_of_section == "body");    assert(obj.metainfo.is_of_type    == "block");    assert(obj.metainfo.is_a          == "table"); -  auto _tablarize(O)( +  Tuple!(string, string) _tablarize(O)(      const O         obj,            string    _txt,    ) { @@ -961,14 +961,14 @@ string html_table(M,O)(          }          _table ~= "</tr>";        } -    auto t = tuple( +    Tuple!(string, string) t = tuple(        _table,        _tablenote,      );      return t;    }    string _txt = munge_html(doc_matters, obj); -  auto t = _tablarize(obj, _txt); +  Tuple!(string, string) t = _tablarize(obj, _txt);    _txt = t[0];    string _note = t[1];    string o = format(q"┃<p class="%s"> | 
