aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/doc_reform/output/defaults.d
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2019-02-01 11:55:35 -0500
committerRalph Amissah <ralph.amissah@gmail.com>2019-05-17 16:59:38 -0400
commit9f4cf3aaba75a1f71743c96ea079b1fb3dbc0db5 (patch)
treebcca8e32929e72bc8c6818a644afe4762efa9af4 /src/doc_reform/output/defaults.d
parentinline fontface markup, internal representation (diff)
inline fontface markup, internal representation, reorganise code
Diffstat (limited to 'src/doc_reform/output/defaults.d')
-rw-r--r--src/doc_reform/output/defaults.d10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/doc_reform/output/defaults.d b/src/doc_reform/output/defaults.d
index 36f5c8e..e54afb9 100644
--- a/src/doc_reform/output/defaults.d
+++ b/src/doc_reform/output/defaults.d
@@ -8,8 +8,17 @@ template InternalMarkup() {
static struct InlineMarkup {
auto en_a_o = "【"; auto en_a_c = "】";
auto en_b_o = "〖"; auto en_b_c = "〗";
+ auto ff_o = "┨"; auto ff_c = "┣"; // fontface
auto lnk_o = "┥"; auto lnk_c = "┝";
auto url_o = "┤"; auto url_c = "├";
+ auto emph = "*";
+ auto bold = "!";
+ auto italic = "/";
+ auto underscore = "_";
+ auto superscript = "^";
+ auto subscript = ",";
+ auto mono = "■";
+ auto cite = "‖";
auto mark_internal_site_lnk = "¤";
auto nbsp = "░";
auto br_line = "┘";
@@ -23,7 +32,6 @@ template InternalMarkup() {
auto tc_o = "┏";
auto tc_c = "┚";
auto tc_p = "┆";
- auto mono = "■";
auto img = "☼";
static string indent_by_spaces_provided(int indent, string _indent_spaces ="░░") {
_indent_spaces = replicate(_indent_spaces, indent);