diff options
author | Ralph Amissah <ralph@amissah.com> | 2016-11-25 18:19:24 -0500 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:13 -0400 |
commit | 19d648a891b3cb9c7d573911f83d3a9fafe2b434 (patch) | |
tree | abd0ee081fe2058f04bf58b7b14ac0fb3295c571 /src/sdp/output_html.d | |
parent | munge links & urls for sections: toc, endnotes, book index (diff) |
housekeeping
Diffstat (limited to 'src/sdp/output_html.d')
-rw-r--r-- | src/sdp/output_html.d | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/sdp/output_html.d b/src/sdp/output_html.d index ce5684f..5552fe2 100644 --- a/src/sdp/output_html.d +++ b/src/sdp/output_html.d @@ -4,14 +4,14 @@ template SiSUoutputHTML() { auto ref const O obj, ) { string o; - o = format(q"◎<br><hr /><br> + o = format(q"¶<br><hr /><br> <div class="substance"> <label class="ocn"><a href="#%s" class="lnkocn">%s</a></label> <h%s class="norm" id="%s"><a name="%s"></a> %s </h%s> </div> - ◎", + ¶", obj.obj_cite_number, obj.obj_cite_number, obj.heading_attrib.lev_markup_number, @@ -26,13 +26,13 @@ template SiSUoutputHTML() { auto ref const O obj, ) { string o; - o = format(q"◎<div class="substance"> + o = format(q"¶<div class="substance"> <label class="ocn"><a href="#%s" class="lnkocn">%s</a></label> <p class="h%si%s" id="%s"> %s </p> </div> - ◎", + ¶", obj.obj_cite_number, obj.obj_cite_number, obj.para_attrib.indent_start, @@ -44,7 +44,7 @@ template SiSUoutputHTML() { } auto scroll_head_html() { string o; - o = format(q"◎ + o = format(q"¶ <!DOCTYPE html> <html> <head> @@ -72,18 +72,18 @@ template SiSUoutputHTML() { </head> <body lang="en"> <a name="top" id="top"></a> - ◎"); + ¶"); return o; } auto scroll_tail_html() { string o; - o = format(q"◎ + o = format(q"¶ <a name="bottom" id="bottom"></a> <a name="end" id="end"></a> </div> </body> </html> - ◎"); + ¶"); return o; } void scroll(C)( |