From 5a418e1e3934fb61de88a0b504f82a9361bd9c7e Mon Sep 17 00:00:00 2001 From: Nicolas Marier Date: Tue, 31 Aug 2021 17:21:22 -0400 Subject: [PATCH] docs(configuration): move extra syntaxes to markdown After much trial and error, it would seem that the correct location for extra syntaxes is actually the markdown section rather than the main section. This commit fixes that part of the docs. --- docs/content/documentation/getting-started/configuration.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/documentation/getting-started/configuration.md b/docs/content/documentation/getting-started/configuration.md index 8b4bd034..58576180 100644 --- a/docs/content/documentation/getting-started/configuration.md +++ b/docs/content/documentation/getting-started/configuration.md @@ -84,9 +84,6 @@ hard_link_static = false # taxonomies = [] -# A list of directories used to search for additional `.sublime-syntax` files. -extra_syntaxes = [] - # When set to "true", a search index is built from the pages and section # content for `default_language`. build_search_index = false @@ -96,6 +93,9 @@ build_search_index = false # When set to "true", all code blocks are highlighted. highlight_code = false +# A list of directories used to search for additional `.sublime-syntax` files. +extra_syntaxes = [] + # The theme to use for code highlighting. # See below for list of allowed values. highlight_theme = "base16-ocean-dark"