diff options
Diffstat (limited to 'sphinx/writers/html5.py')
-rw-r--r-- | sphinx/writers/html5.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sphinx/writers/html5.py b/sphinx/writers/html5.py index 557027da5..d7c7b95e8 100644 --- a/sphinx/writers/html5.py +++ b/sphinx/writers/html5.py @@ -390,11 +390,7 @@ class HTML5Translator(SphinxTranslator, BaseTranslator): linenos = node.get('linenos', False) highlight_args = node.get('highlight_args', {}) highlight_args['force'] = node.get('force', False) - if lang == self.config.highlight_language: - # only pass highlighter options for original language - opts = self.config.highlight_options - else: - opts = {} + opts = self.config.highlight_options.get(lang, {}) if linenos and self.config.html_codeblock_linenos_style: linenos = self.config.html_codeblock_linenos_style |