From d7f1d865ec190a394cd1bf717cc1344685763b07 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Sun, 13 Mar 2016 09:50:52 +0100 Subject: [PATCH] Fix pygments lexer name This prevent the build from sending warnings like this: YAMLSyntax.rst:28: WARNING: Pygments lexer name 'YAML' is not known and actually show real warnings and issues in the documentation --- docsite/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/conf.py b/docsite/conf.py index 95bc1fb8328..b300813b255 100644 --- a/docsite/conf.py +++ b/docsite/conf.py @@ -100,7 +100,7 @@ exclude_patterns = ['modules'] # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' -highlight_language = 'YAML' +highlight_language = 'yaml' # Options for HTML output