diff options
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -26,7 +26,11 @@ local function mode_code(S) text = text .. line end end - S:emit(highlight(text, lang)) + if lang then + S:emit(highlight(text, lang)) + else + S:emit(T.pre(text)) + end end local function mode_list(S) |