diff options
-rwxr-xr-x | tkread | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -24,7 +24,7 @@ set usage {tkread [-w] [-m] # - add more markdown processing set fontfamily {Linux Libertine O} -set fontsize 16 +set fontsize 11 set textcolour #443322 set bgcolour #eeeee2 set outercolour #222222 @@ -133,6 +133,7 @@ proc markup {widget} { } # remove links + # TODO: search for ]( and then work back to find the [, as otherwise false positives occur when something like 'strike[s] him' is encountered # TODO: save the link contents and allow the links to be shown / hidden with a keystroke set cur [$widget search {[} 0.0 end] while {$cur != ""} { |