aboutsummaryrefslogtreecommitdiff
path: root/lexers/markdown.lua
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2016-04-07 22:45:57 +0200
committerMarc André Tanner <mat@brain-dump.org>2016-04-07 22:55:16 +0200
commit7062a05be3bd595a2f8ef5b395360b5765744633 (patch)
tree53236ed62f559970d36c8e4a7ee1c42bf2fcf3e8 /lexers/markdown.lua
parented6dfb43ebd00ea1a04390ea9f818f9ec9ac0d50 (diff)
downloadvis-7062a05be3bd595a2f8ef5b395360b5765744633.tar.gz
vis-7062a05be3bd595a2f8ef5b395360b5765744633.tar.xz
lexer: remove hard coded color specification from lexers
The variable syntax used by scintillua %(color.red) intended to make colors configurable is currently not supported. Close #229
Diffstat (limited to 'lexers/markdown.lua')
-rw-r--r--lexers/markdown.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/markdown.lua b/lexers/markdown.lua
index 14380e9..0257010 100644
--- a/lexers/markdown.lua
+++ b/lexers/markdown.lua
@@ -91,7 +91,7 @@ M._tokenstyles = {
h2 = hstyle..',size:'..(font_size + 4),
h1 = hstyle..',size:'..(font_size + 5),
code = l.STYLE_EMBEDDED..',eolfilled',
- hr = 'back:black,eolfilled',
+ hr = l.STYLE_DEFAULT..',bold',
link = 'underlined',
link_url = 'underlined',
link_label = l.STYLE_LABEL,