From 850c9f691e771bf8a4a5c1307d23788db7097f7f Mon Sep 17 00:00:00 2001
From: Adam Perkowski <adas1per@protonmail.com>
Date: Tue, 16 Jul 2024 05:29:00 +0200
Subject: [PATCH] Fixed headings (# / ##) to match other docs (#11192)

---
 book/src/guides/adding_languages.md | 2 +-
 book/src/guides/indent.md           | 2 +-
 book/src/guides/injection.md        | 2 +-
 book/src/guides/textobject.md       | 2 +-
 book/src/lang-support.md            | 2 +-
 book/src/languages.md               | 2 +-
 book/src/remapping.md               | 2 +-
 book/src/themes.md                  | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/book/src/guides/adding_languages.md b/book/src/guides/adding_languages.md
index 1a47b79c..aa4bf0c5 100644
--- a/book/src/guides/adding_languages.md
+++ b/book/src/guides/adding_languages.md
@@ -1,4 +1,4 @@
-# Adding new languages to Helix
+## Adding new languages to Helix
 
 In order to add a new language to Helix, you will need to follow the steps
 below.
diff --git a/book/src/guides/indent.md b/book/src/guides/indent.md
index be140384..1e520731 100644
--- a/book/src/guides/indent.md
+++ b/book/src/guides/indent.md
@@ -1,4 +1,4 @@
-# Adding indent queries
+## Adding indent queries
 
 Helix uses tree-sitter to correctly indent new lines. This requires a tree-
 sitter grammar and an `indent.scm` query file placed in `runtime/queries/
diff --git a/book/src/guides/injection.md b/book/src/guides/injection.md
index 0a1d2c9a..c0f75094 100644
--- a/book/src/guides/injection.md
+++ b/book/src/guides/injection.md
@@ -1,4 +1,4 @@
-# Adding Injection Queries
+## Adding Injection Queries
 
 Writing language injection queries allows one to highlight a specific node as a different language.
 In addition to the [standard][upstream-docs] language injection options used by tree-sitter, there
diff --git a/book/src/guides/textobject.md b/book/src/guides/textobject.md
index a31baef9..4d33ab67 100644
--- a/book/src/guides/textobject.md
+++ b/book/src/guides/textobject.md
@@ -1,4 +1,4 @@
-# Adding textobject queries
+## Adding textobject queries
 
 Helix supports textobjects that are language specific, such as functions, classes, etc.
 These textobjects require an accompanying tree-sitter grammar and a `textobjects.scm` query file
diff --git a/book/src/lang-support.md b/book/src/lang-support.md
index aede33fa..3b326164 100644
--- a/book/src/lang-support.md
+++ b/book/src/lang-support.md
@@ -1,4 +1,4 @@
-# Language Support
+## Language Support
 
 The following languages and Language Servers are supported. To use
 Language Server features, you must first [configure][lsp-config-wiki] the
diff --git a/book/src/languages.md b/book/src/languages.md
index 33ecbb92..fe105cce 100644
--- a/book/src/languages.md
+++ b/book/src/languages.md
@@ -1,4 +1,4 @@
-# Languages
+## Languages
 
 Language-specific settings and settings for language servers are configured
 in `languages.toml` files.
diff --git a/book/src/remapping.md b/book/src/remapping.md
index d762c6ad..863c5557 100644
--- a/book/src/remapping.md
+++ b/book/src/remapping.md
@@ -1,4 +1,4 @@
-# Key remapping
+## Key remapping
 
 Helix currently supports one-way key remapping through a simple TOML configuration
 file. (More powerful solutions such as rebinding via commands will be
diff --git a/book/src/themes.md b/book/src/themes.md
index b8e27137..f9f8393c 100644
--- a/book/src/themes.md
+++ b/book/src/themes.md
@@ -1,4 +1,4 @@
-# Themes
+## Themes
 
 To use a theme add `theme = "<name>"` to the top of your [`config.toml`](./configuration.md) file, or select it during runtime using `:theme <name>`.