From d4f28506632f5930bb96b6b3c66df1bfb357e227 Mon Sep 17 00:00:00 2001 From: Bartosz izdwuut Konikiewicz Date: Thu, 27 Sep 2018 13:27:18 +0200 Subject: [PATCH] Disable word wrap in code blocks. --- static/css/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index 678687a..741b800 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -511,3 +511,6 @@ pre, code { .highlight div { border-radius: 6px; } +.post-content table code { + white-space: pre; +}