From 5a35617f85951ff2b97626290dd14f3e3565459b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 16 Oct 2014 08:49:49 +0200 Subject: [PATCH] markup friendly markdown This should allow using underscores in answers, without them being mangled. --- bar/live_settings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bar/live_settings.py b/bar/live_settings.py index f81f8552..78e4252b 100644 --- a/bar/live_settings.py +++ b/bar/live_settings.py @@ -66,6 +66,9 @@ LIVESETTINGS_OPTIONS = { 'ALLOW_POSTING_BEFORE_LOGGING_IN': False, 'TAG_LIST_FORMAT': 'cloud', }, + 'MARKUP': { + 'MARKUP_CODE_FRIENDLY': True, + }, 'VOTE_RULES': { 'MIN_DAYS_FOR_STAFF_TO_ACCEPT_ANSWER': 0, },