From e31efec7b12758078d6dbcb0f0926651af799e41 Mon Sep 17 00:00:00 2001 From: lamusmaser Date: Fri, 19 Apr 2024 07:36:31 -0600 Subject: [PATCH 1/3] Fix brackets around question --- mkdocs/docs/faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs/docs/faq.md b/mkdocs/docs/faq.md index 67b76f9..209bbaf 100644 --- a/mkdocs/docs/faq.md +++ b/mkdocs/docs/faq.md @@ -40,7 +40,7 @@ Docker is the only supported installation method. If you don't have any experien ## How do I install this on Windows? The only supported methodology is through Docker on Windows. We don't currently have installation instructions provided, however it has been reported that some users have been successful in getting it to work with modification of the base `docker-compose.yml`. Try following the [Docker Compose](installation/docker-compose.md) instructions. -## Where is the .exe/.rpm/.pkg/.msi/? +## Where is the .exe/.rpm/.pkg/.msi/<insert installer here&rt;? As noted [here](faq.md#how-do-i-install-this-natively), this project is largely focused on container-based applications. We are not looking to support cross-platform for a small user base. It is not on our roadmap to support any additional installation types or be included as part of additional installation package manager solutions. However, this is an open source project and we won't stop the community from providing those packages. If you do decide to do so, please contribute to our installation instructions and point to your created resources. Pay attention to any licensing requirements for dependencies. ## How do I finetune Elasticsearch? From 760e83320ce10916453c3847bbb1daf0690dcb3e Mon Sep 17 00:00:00 2001 From: lamusmaser Date: Fri, 19 Apr 2024 07:38:20 -0600 Subject: [PATCH 2/3] Fix right angle bracket. --- mkdocs/docs/faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs/docs/faq.md b/mkdocs/docs/faq.md index 209bbaf..59fba86 100644 --- a/mkdocs/docs/faq.md +++ b/mkdocs/docs/faq.md @@ -40,7 +40,7 @@ Docker is the only supported installation method. If you don't have any experien ## How do I install this on Windows? The only supported methodology is through Docker on Windows. We don't currently have installation instructions provided, however it has been reported that some users have been successful in getting it to work with modification of the base `docker-compose.yml`. Try following the [Docker Compose](installation/docker-compose.md) instructions. -## Where is the .exe/.rpm/.pkg/.msi/<insert installer here&rt;? +## Where is the .exe/.rpm/.pkg/.msi/<insert installer here>? As noted [here](faq.md#how-do-i-install-this-natively), this project is largely focused on container-based applications. We are not looking to support cross-platform for a small user base. It is not on our roadmap to support any additional installation types or be included as part of additional installation package manager solutions. However, this is an open source project and we won't stop the community from providing those packages. If you do decide to do so, please contribute to our installation instructions and point to your created resources. Pay attention to any licensing requirements for dependencies. ## How do I finetune Elasticsearch? From 4eb5b4f4af3f566704eaa675ec56024c97597a71 Mon Sep 17 00:00:00 2001 From: lamusmaser Date: Fri, 19 Apr 2024 08:31:22 -0600 Subject: [PATCH 3/3] Add styling to tables. --- mkdocs/docs/stylesheets/style.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/mkdocs/docs/stylesheets/style.css b/mkdocs/docs/stylesheets/style.css index e29af50..0253b8c 100644 --- a/mkdocs/docs/stylesheets/style.css +++ b/mkdocs/docs/stylesheets/style.css @@ -40,6 +40,19 @@ footer { border-color: var(--accent-font-light); } +.md-typeset .table::not { + border-color: .075rem solid #448aff; + border-radius: 0.2rem; +} + +.md-typeset .tr::hover { + background-color: var(--md-admonition-bg-color); +} + +.md-typeset .td::not { + border-top: .05rem solid white; +} + .highlight .nv { color: var(--highlight-error-light); } @@ -65,6 +78,7 @@ footer { --md-code-hl-number-color: var(--highlight-error-light); --md-code-hl-operator-color: var(--highlight-error); --md-code-nv-color: var(--highlight-error); + --md-typeset-table-color: var(--main-font); } :root {