diff --git a/qutebrowser/html/settings.html b/qutebrowser/html/settings.html index 8b441b677..50e1e00d9 100644 --- a/qutebrowser/html/settings.html +++ b/qutebrowser/html/settings.html @@ -15,6 +15,7 @@ th { background: lightgrey; } th pre { color: grey; text-align: left; } .noscript, .noscript-text { color:red; } .noscript-text { margin-bottom: 5cm; } +.option_description { margin: .5ex 0; color: grey; font-size: 80%; font-style: italic; white-space: pre-line; } {% endblock %} {% block content %} @@ -25,7 +26,11 @@ th pre { color: grey; text-align: left; }

{{ section }}

{{ config.SECTION_DESC.get(section)|wordwrap(width=120) }}
{% for d, e in config.DATA.get(section).items() %} - {{ d }} (Current: {{ confget(section, d)|truncate(100) }}) + {{ d }} (Current: {{ confget(section, d)|truncate(100) }}) + {% if config.DATA.get(section).descriptions[d] %} +

{{ config.DATA.get(section).descriptions[d]|e }}

+ {% endif %} +