diff options
-rwxr-xr-x | tkread | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -15,6 +15,8 @@ set usage {tkread [-w] [-m] # <https://github.com/Gottox/smu> # # TODO: +# - `` wrapping code (eg make monospace) +# - bug: regular [square brackets] have the opening bracket removed # - rewrap after markdown processing (or just rewrap more smartly), so that things like underlines aren't screwed up by it # - justify text (not simple; see http://wiki.tcl.tk/1774) # - add a basic search function @@ -72,6 +74,7 @@ set replacements { \ {{\\$} ""} \ {{\\\$} "$"} \ {{\\\*} "⁎"} \ + {{\\#} "#"} \ } if { $::argc > 0 && [lindex $::argv 0] == "-h" } { |