diff options
Diffstat (limited to 'org/default_misc.org')
-rw-r--r-- | org/default_misc.org | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/org/default_misc.org b/org/default_misc.org index d4576a6..a811b91 100644 --- a/org/default_misc.org +++ b/org/default_misc.org @@ -224,8 +224,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 = "┘"; @@ -239,7 +248,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); |