From af158988239e806be1b93268c9dfb387b689b1f7 Mon Sep 17 00:00:00 2001 From: FMuro Date: Sat, 5 May 2018 20:36:08 +0200 Subject: [PATCH] Fix boldface and italics (#1837) Before, **boldface** or *italics* (also _italics_) would not generally show as that, definitely not with the default color scheme. After this change, they appear with the same color as normal text but with that typography, in all color schemes. --- data/filedefs/filetypes.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/filedefs/filetypes.markdown b/data/filedefs/filetypes.markdown index b5fe588ac..4542a616e 100644 --- a/data/filedefs/filetypes.markdown +++ b/data/filedefs/filetypes.markdown @@ -2,8 +2,8 @@ [styling] # Edit these in the colorscheme .conf file instead default=default -strong=string_3 -emphasis=string_4 +strong=default,bold +emphasis=default,italic header1=keyword_1 header2=keyword_1 header3=keyword_1 -- 2.11.4.GIT