diff options
author | Nick White <git@njw.name> | 2014-03-17 02:03:04 -0400 |
---|---|---|
committer | Nick White <git@njw.name> | 2014-03-17 02:03:04 -0400 |
commit | d24c552d9988ccab56297ba23926010d82b28ba5 (patch) | |
tree | 3b78cef00bdbb955ac379e6d503b027bbac93308 | |
parent | 3d4c629ac293711074ac5a692b58db32f9c8bbc9 (diff) | |
download | tkread-d24c552d9988ccab56297ba23926010d82b28ba5.tar.bz2 tkread-d24c552d9988ccab56297ba23926010d82b28ba5.zip |
Reduce default font size
-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 != ""} { |