Signed-off-by: Valentin Gagarin <valentin@gagarin.work> --- Documentation/Gemfile | 1 - Documentation/Gemfile.lock | 12 +----- Documentation/_config.yml | 7 --- Documentation/_includes/sitemap.html | 2 +- Documentation/_includes/title.html | 13 ------ Documentation/_plugins/site_title_link.rb | 10 ----- Documentation/_sass/custom/custom.scss | 43 ------------------- Documentation/doc/about/architecture.adoc | 1 - Documentation/doc/about/index.adoc | 2 - Documentation/doc/about/requirements.adoc | 1 - Documentation/doc/contributing/b4.adoc | 2 - .../contributing/building-documentation.adoc | 1 - .../doc/contributing/communication.adoc | 2 - .../doc/contributing/first-patch.adoc | 2 - Documentation/doc/contributing/index.adoc | 2 - Documentation/doc/contributing/replying.adoc | 2 - .../doc/contributing/reviewing-patches.adoc | 2 - .../doc/contributing/testing-patches.adoc | 2 - .../contributing/working-with-patches.adoc | 2 - .../contributing/writing_documentation.adoc | 5 +-- .../decisions/001-host-update-mechanism.adoc | 2 - .../doc/decisions/002-install-options.adoc | 2 - .../doc/decisions/003-partitioning.adoc | 2 - .../004-data-at-rest-encryption.adoc | 2 - .../005-virtual-machine-monitor.adoc | 2 - .../doc/decisions/006-drivers-on-host.adoc | 2 - .../decisions/007-usb-virtual-machines.adoc | 2 - ...008-inter-vm-communication-mechanisms.adoc | 2 - Documentation/doc/decisions/index.adoc | 2 - .../doc/development/build-configuration.adoc | 1 - .../doc/development/built-in-vms.adoc | 1 - Documentation/doc/development/checks.adoc | 1 - Documentation/doc/development/debugging.adoc | 1 - Documentation/doc/development/index.adoc | 2 - .../doc/development/persistent-storage.adoc | 1 - Documentation/doc/development/release.adoc | 1 - Documentation/doc/development/updates.adoc | 1 - .../doc/development/uuid-reference.adoc | 1 - Documentation/doc/index.adoc | 1 - .../doc/installation/binary-cache.adoc | 1 - .../doc/installation/getting-spectrum.adoc | 1 - Documentation/doc/installation/index.adoc | 2 - .../using-spectrum/creating-custom-vms.adoc | 1 - Documentation/doc/using-spectrum/index.adoc | 2 - .../doc/using-spectrum/running-vms.adoc | 1 - .../doc/using-spectrum/vm-file-access.adoc | 1 - Documentation/gemset.nix | 33 -------------- 47 files changed, 3 insertions(+), 182 deletions(-) delete mode 100644 Documentation/_includes/title.html delete mode 100644 Documentation/_plugins/site_title_link.rb delete mode 100644 Documentation/_sass/custom/custom.scss diff --git a/Documentation/Gemfile b/Documentation/Gemfile index 3c3f59d..a6396da 100644 --- a/Documentation/Gemfile +++ b/Documentation/Gemfile @@ -6,4 +6,3 @@ source "https://rubygems.org" gem "jekyll" gem "jekyll-asciidoc" -gem "just-the-docs", "~> 0.10.0" diff --git a/Documentation/Gemfile.lock b/Documentation/Gemfile.lock index e7b515e..992e6da 100644 --- a/Documentation/Gemfile.lock +++ b/Documentation/Gemfile.lock @@ -43,20 +43,11 @@ GEM jekyll-asciidoc (3.0.1) asciidoctor (>= 1.5.0, < 3.0.0) jekyll (>= 3.0.0) - jekyll-include-cache (0.2.1) - jekyll (>= 3.7, < 5.0) jekyll-sass-converter (3.1.0) sass-embedded (~> 1.75) - jekyll-seo-tag (2.8.0) - jekyll (>= 3.8, < 5.0) jekyll-watch (2.2.1) listen (~> 3.0) json (2.13.0) - just-the-docs (0.10.1) - jekyll (>= 3.8.5) - jekyll-include-cache - jekyll-seo-tag (>= 2.0) - rake (>= 12.3.1) kramdown (2.5.1) rexml (>= 3.3.9) kramdown-parser-gfm (1.1.0) @@ -90,7 +81,6 @@ PLATFORMS DEPENDENCIES jekyll jekyll-asciidoc - just-the-docs (~> 0.10.0) BUNDLED WITH - 2.6.9 + 2.7.2 diff --git a/Documentation/_config.yml b/Documentation/_config.yml index b11c399..cc3e8ea 100644 --- a/Documentation/_config.yml +++ b/Documentation/_config.yml @@ -2,13 +2,6 @@ # SPDX-FileCopyrightText: 2022 Alyssa Ross <hi@alyssa.is> --- title: Spectrum documentation -logo: /logo/logo_html.svg -theme: just-the-docs -aux_links: - Home: - - / - Git: - - "https://spectrum-os.org/git/" plugins: - jekyll-asciidoc exclude: diff --git a/Documentation/_includes/sitemap.html b/Documentation/_includes/sitemap.html index cd493f8..0850a48 100644 --- a/Documentation/_includes/sitemap.html +++ b/Documentation/_includes/sitemap.html @@ -40,7 +40,7 @@ which we assume if it is constructed by a directory and contains an index file. {%- if is_index and slashes == 1 -%}{%- assign is_section = true -%}{%- endif -%} {%- if is_page or is_section %} <li> - <a href="{{ p.url | relative_url }}">{{ p.title }}</a>{% if p.description %} — {{ p.description }}{% endif %} + <a href="{{ p.url | relative_url }}">{{ p.title }}</a> {%- if is_section -%} {%- include sitemap.html prefix=p.url -%} {%- endif -%} diff --git a/Documentation/_includes/title.html b/Documentation/_includes/title.html deleted file mode 100644 index 90ef71b..0000000 --- a/Documentation/_includes/title.html +++ /dev/null @@ -1,13 +0,0 @@ -{% comment %} -SPDX-License-Identifier: MIT -SPDX-FileCopyrightText: 2016 Patrick Marsceill -SPDX-FileCopyrightText: 2026 Valentin Gagarin <valentin@gagarin.work> - -Override of: https://github.com/just-the-docs/just-the-docs/blob/v0.10.1/_includes/title.... -{% endcomment %} -{% if site.logo %} - <div class="site-logo" role="img" aria-label="{{ site.title }}"></div> -{% endif %} -{% if site.title %} - {{ site.title }} -{% endif %} diff --git a/Documentation/_plugins/site_title_link.rb b/Documentation/_plugins/site_title_link.rb deleted file mode 100644 index 4095701..0000000 --- a/Documentation/_plugins/site_title_link.rb +++ /dev/null @@ -1,10 +0,0 @@ -# SPDX-License-Identifier: EUPL-1.2+ -# SPDX-FileCopyrightText: 2026 Valentin Gagarin <valentin@gagarin.work> - -# Just the Docs hardcodes the site header link to `/`. -# https://github.com/just-the-docs/just-the-docs/blob/v0.10.1/_includes/compon... -# Make it point to the docs root, not the top-level site. -Jekyll::Hooks.register [:pages, :documents], :post_render do |item| - item.output.sub!('<a href="/" class="site-title', - '<a href="/doc/" class="site-title') -end diff --git a/Documentation/_sass/custom/custom.scss b/Documentation/_sass/custom/custom.scss deleted file mode 100644 index 48b1d41..0000000 --- a/Documentation/_sass/custom/custom.scss +++ /dev/null @@ -1,43 +0,0 @@ -// SPDX-License-Identifier: MIT -// SPDX-FileCopyrightText: 2022 Alyssa Ross <hi@alyssa.is> -// SPDX-FileCopyrightText: 2026 Valentin Gagarin <valentin@gagarin.work> - -.main-content { - // Just the Docs puts titles next to definitions, rather than on - // the line before. This makes the definitions too horizontally - // compressed. - dl { - display: block; - } - dt { - text-align: left; - font-weight: bold; - - &::after { - content: none; - } - } - dd { - margin-left: 2ch; - } -} - -// Make the logo and title fit the site header. -.site-header { - .site-logo { - width: 3rem; - } - - // Just the Docs displays a sidebar at the "medium size" `md` breakpoint and above. - // Use the upstream `mq` media query mixin to target that breakpoint. - // https://just-the-docs.com/docs/utilities/responsive-modifiers/ - // https://github.com/just-the-docs/just-the-docs/blob/v0.10.1/_sass/support/mi... - @include mq(md) { - .site-logo { - width: 5.5rem; - } - .site-title { - font-size: 1.25rem !important; - } - } -} diff --git a/Documentation/doc/about/architecture.adoc b/Documentation/doc/about/architecture.adoc index 2b86616..bbc927d 100644 --- a/Documentation/doc/about/architecture.adoc +++ b/Documentation/doc/about/architecture.adoc @@ -1,5 +1,4 @@ = Architecture -:page-parent: About Spectrum // SPDX-FileCopyrightText: 2022 Unikie // SPDX-FileCopyrightText: 2022, 2024 Alyssa Ross <hi@alyssa.is> diff --git a/Documentation/doc/about/index.adoc b/Documentation/doc/about/index.adoc index 6961b6a..019737f 100644 --- a/Documentation/doc/about/index.adoc +++ b/Documentation/doc/about/index.adoc @@ -1,7 +1,5 @@ = About Spectrum -:description: Some words about Spectrum as the operating system, not a project. Highlights the differences between common Linux distributions and Spectrum. :page-nav_order: 1 -:page-has_children: true // SPDX-FileCopyrightText: 2022 Unikie // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/about/requirements.adoc b/Documentation/doc/about/requirements.adoc index 40f802f..6c32c31 100644 --- a/Documentation/doc/about/requirements.adoc +++ b/Documentation/doc/about/requirements.adoc @@ -1,5 +1,4 @@ = Hardware and firmware requirements -:page-parent: About Spectrum // SPDX-FileCopyrightText: 2024 Alyssa Ross <hi@alyssa.is> // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/contributing/b4.adoc b/Documentation/doc/contributing/b4.adoc index 81f2519..3734c3a 100644 --- a/Documentation/doc/contributing/b4.adoc +++ b/Documentation/doc/contributing/b4.adoc @@ -1,6 +1,4 @@ = Installing and Configuring b4 -:page-parent: Working with Patches -:page-grand_parent: Contributing :page-nav_order: 1 // SPDX-FileCopyrightText: 2022 Alyssa Ross <hi@alyssa.is> diff --git a/Documentation/doc/contributing/building-documentation.adoc b/Documentation/doc/contributing/building-documentation.adoc index 919a021..b691d4d 100644 --- a/Documentation/doc/contributing/building-documentation.adoc +++ b/Documentation/doc/contributing/building-documentation.adoc @@ -1,5 +1,4 @@ = Building Documentation -:page-parent: Contributing :page-nav_order: 4 // SPDX-FileCopyrightText: 2022 Unikie diff --git a/Documentation/doc/contributing/communication.adoc b/Documentation/doc/contributing/communication.adoc index 874ad4e..987014e 100644 --- a/Documentation/doc/contributing/communication.adoc +++ b/Documentation/doc/contributing/communication.adoc @@ -1,7 +1,5 @@ = Communication in Spectrum -:description: Channels, announcements and so on. :page-nav_order: 1 -:page-parent: Contributing // SPDX-FileCopyrightText: 2019-2024 Alyssa Ross <hi@alyssa.is> // SPDX-FileCopyrightText: 2023 Unikie diff --git a/Documentation/doc/contributing/first-patch.adoc b/Documentation/doc/contributing/first-patch.adoc index 38326c0..2625888 100644 --- a/Documentation/doc/contributing/first-patch.adoc +++ b/Documentation/doc/contributing/first-patch.adoc @@ -1,6 +1,4 @@ = Sending Your Patch -:page-parent: Working with Patches -:page-grand_parent: Contributing :page-nav_order: 1 // SPDX-FileCopyrightText: 2022 Unikie diff --git a/Documentation/doc/contributing/index.adoc b/Documentation/doc/contributing/index.adoc index 5ae6811..04ff34a 100644 --- a/Documentation/doc/contributing/index.adoc +++ b/Documentation/doc/contributing/index.adoc @@ -1,7 +1,5 @@ = Contributing -:description: How to contribute changes to the Spectrum source repository. :page-nav_order: 5 -:page-has_children: true // SPDX-FileCopyrightText: 2023 Unikie // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/contributing/replying.adoc b/Documentation/doc/contributing/replying.adoc index c478afb..c6ec4b8 100644 --- a/Documentation/doc/contributing/replying.adoc +++ b/Documentation/doc/contributing/replying.adoc @@ -1,6 +1,4 @@ = Replying to Messages in the Mailing List Archives -:page-parent: Working with Patches -:page-grand_parent: Contributing :page-nav_order: 3 // SPDX-FileCopyrightText: 2022 Alyssa Ross <hi@alyssa.is> diff --git a/Documentation/doc/contributing/reviewing-patches.adoc b/Documentation/doc/contributing/reviewing-patches.adoc index 0e73b0e..224e314 100644 --- a/Documentation/doc/contributing/reviewing-patches.adoc +++ b/Documentation/doc/contributing/reviewing-patches.adoc @@ -1,6 +1,4 @@ = Reviewing Patches -:page-parent: Working with Patches -:page-grand_parent: Contributing :page-nav_order: 2 // SPDX-FileCopyrightText: 2022 Alyssa Ross <hi@alyssa.is> diff --git a/Documentation/doc/contributing/testing-patches.adoc b/Documentation/doc/contributing/testing-patches.adoc index d98b738..031855d 100644 --- a/Documentation/doc/contributing/testing-patches.adoc +++ b/Documentation/doc/contributing/testing-patches.adoc @@ -1,6 +1,4 @@ = Testing Patches -:page-parent: Working with Patches -:page-grand_parent: Contributing :page-nav_order: 2 // SPDX-FileCopyrightText: 2022 Alyssa Ross <hi@alyssa.is> diff --git a/Documentation/doc/contributing/working-with-patches.adoc b/Documentation/doc/contributing/working-with-patches.adoc index 8e22343..6e1e83e 100644 --- a/Documentation/doc/contributing/working-with-patches.adoc +++ b/Documentation/doc/contributing/working-with-patches.adoc @@ -1,7 +1,5 @@ = Working with Patches -:page-parent: Contributing :page-nav_order: 2 -:page-has_children: true // SPDX-FileCopyrightText: 2022 Unikie // SPDX-FileCopyrightText: 2025 Alyssa Ross <hi@alyssa.is> diff --git a/Documentation/doc/contributing/writing_documentation.adoc b/Documentation/doc/contributing/writing_documentation.adoc index cb09241..d61f0bd 100644 --- a/Documentation/doc/contributing/writing_documentation.adoc +++ b/Documentation/doc/contributing/writing_documentation.adoc @@ -1,7 +1,5 @@ = Documentation Style Guide -:description: Channels, announcements and so on. :page-nav_order: 3 -:page-parent: Contributing // SPDX-FileCopyrightText: 2023 Unikie // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 @@ -12,7 +10,7 @@ Please follow these guidelines and conventions when editing the documentation. We use https://nixos.org/manual/nix/stable/introduction.html[Nix] and -https://github.com/just-the-docs/just-the-docs[Just the Docs] for +https://jekyllrb.com/[Jekyll] for building the documentation. Sources are written in AsciiDoc If you are new with it, see https://docs.asciidoctor.org/asciidoc/latest/[AsciiDoc Language Documentation]. @@ -42,7 +40,6 @@ to suit your changing needs. include your name and a revision line following the author line. Example: = Document Title - :description: Some words about the content. Author Name <author@example.org> v1.0, 2012-02-10 //empty line that ends the document header diff --git a/Documentation/doc/decisions/001-host-update-mechanism.adoc b/Documentation/doc/decisions/001-host-update-mechanism.adoc index 39f9f28..d0ab341 100644 --- a/Documentation/doc/decisions/001-host-update-mechanism.adoc +++ b/Documentation/doc/decisions/001-host-update-mechanism.adoc @@ -1,6 +1,4 @@ = 001 Host Update Mechanism -:page-parent: Architecture Decision Records -:page-grand_parent: About Spectrum // SPDX-FileCopyrightText: 2022 Unikie // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/decisions/002-install-options.adoc b/Documentation/doc/decisions/002-install-options.adoc index 4a745eb..f56a626 100644 --- a/Documentation/doc/decisions/002-install-options.adoc +++ b/Documentation/doc/decisions/002-install-options.adoc @@ -1,6 +1,4 @@ = 002 Install Options -:page-parent: Architecture Decision Records -:page-grand_parent: About Spectrum // SPDX-FileCopyrightText: 2022 Unikie // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/decisions/003-partitioning.adoc b/Documentation/doc/decisions/003-partitioning.adoc index 8e538c3..39f0ee2 100644 --- a/Documentation/doc/decisions/003-partitioning.adoc +++ b/Documentation/doc/decisions/003-partitioning.adoc @@ -1,6 +1,4 @@ = 003 Partitioning -:page-parent: Architecture Decision Records -:page-grand_parent: About Spectrum // SPDX-FileCopyrightText: 2022 Unikie // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/decisions/004-data-at-rest-encryption.adoc b/Documentation/doc/decisions/004-data-at-rest-encryption.adoc index 5b0f518..8f4d430 100644 --- a/Documentation/doc/decisions/004-data-at-rest-encryption.adoc +++ b/Documentation/doc/decisions/004-data-at-rest-encryption.adoc @@ -1,6 +1,4 @@ = 004 Data at Rest Encryption -:page-parent: Architecture Decision Records -:page-grand_parent: About Spectrum // SPDX-FileCopyrightText: 2022 Unikie // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/decisions/005-virtual-machine-monitor.adoc b/Documentation/doc/decisions/005-virtual-machine-monitor.adoc index 8a66c08..1ead8e1 100644 --- a/Documentation/doc/decisions/005-virtual-machine-monitor.adoc +++ b/Documentation/doc/decisions/005-virtual-machine-monitor.adoc @@ -1,6 +1,4 @@ = 005 Virtual Machine Monitor -:page-parent: Architecture Decision Records -:page-grand_parent: About Spectrum // SPDX-FileCopyrightText: 2022 Unikie // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/decisions/006-drivers-on-host.adoc b/Documentation/doc/decisions/006-drivers-on-host.adoc index b92d863..ce7a072 100644 --- a/Documentation/doc/decisions/006-drivers-on-host.adoc +++ b/Documentation/doc/decisions/006-drivers-on-host.adoc @@ -1,6 +1,4 @@ = 006 Drivers on Host -:page-parent: Architecture Decision Records -:page-grand_parent: About Spectrum // SPDX-FileCopyrightText: 2022 Unikie // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/decisions/007-usb-virtual-machines.adoc b/Documentation/doc/decisions/007-usb-virtual-machines.adoc index d832691..f494537 100644 --- a/Documentation/doc/decisions/007-usb-virtual-machines.adoc +++ b/Documentation/doc/decisions/007-usb-virtual-machines.adoc @@ -1,6 +1,4 @@ = 007 USB Virtual Machine -:page-parent: Architecture Decision Records -:page-grand_parent: About Spectrum // SPDX-FileCopyrightText: 2022 Unikie // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/decisions/008-inter-vm-communication-mechanisms.adoc b/Documentation/doc/decisions/008-inter-vm-communication-mechanisms.adoc index c1e5b87..4dec40e 100644 --- a/Documentation/doc/decisions/008-inter-vm-communication-mechanisms.adoc +++ b/Documentation/doc/decisions/008-inter-vm-communication-mechanisms.adoc @@ -1,6 +1,4 @@ = 008 Inter-VM Communication Mechanisms -:page-parent: Architecture Decision Records -:page-grand_parent: About Spectrum // SPDX-FileCopyrightText: 2022 Unikie // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/decisions/index.adoc b/Documentation/doc/decisions/index.adoc index a022239..8a5d237 100644 --- a/Documentation/doc/decisions/index.adoc +++ b/Documentation/doc/decisions/index.adoc @@ -1,6 +1,4 @@ = Architecture Decision Records -:page-has_children: true -:page-parent: About Spectrum // SPDX-FileCopyrightText: 2022 Unikie // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/development/build-configuration.adoc b/Documentation/doc/development/build-configuration.adoc index 49651d0..af7b9fa 100644 --- a/Documentation/doc/development/build-configuration.adoc +++ b/Documentation/doc/development/build-configuration.adoc @@ -1,5 +1,4 @@ = Configuring the Build -:page-parent: Development :page-nav_order: 1 :example-caption: Test diff --git a/Documentation/doc/development/built-in-vms.adoc b/Documentation/doc/development/built-in-vms.adoc index d044e75..fdb5f15 100644 --- a/Documentation/doc/development/built-in-vms.adoc +++ b/Documentation/doc/development/built-in-vms.adoc @@ -1,5 +1,4 @@ = Developing Built-in Application VMs -:page-parent: Development :page-nav_order: 3 // SPDX-FileCopyrightText: 2023-2025 Alyssa Ross <hi@alyssa.is> diff --git a/Documentation/doc/development/checks.adoc b/Documentation/doc/development/checks.adoc index 905d5b8..64463cc 100644 --- a/Documentation/doc/development/checks.adoc +++ b/Documentation/doc/development/checks.adoc @@ -1,5 +1,4 @@ = Checks -:page-parent: Development // SPDX-FileCopyrightText: 2023 Alyssa Ross <hi@alyssa.is> // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/development/debugging.adoc b/Documentation/doc/development/debugging.adoc index f1bbf01..39fd989 100644 --- a/Documentation/doc/development/debugging.adoc +++ b/Documentation/doc/development/debugging.adoc @@ -1,5 +1,4 @@ = Debugging -:page-parent: Development :page-nav_order: 4 // SPDX-FileCopyrightText: 2022 Alyssa Ross <hi@alyssa.is> diff --git a/Documentation/doc/development/index.adoc b/Documentation/doc/development/index.adoc index 4e50425..a52c593 100644 --- a/Documentation/doc/development/index.adoc +++ b/Documentation/doc/development/index.adoc @@ -1,7 +1,5 @@ = Development -:description: Development progress, general development practices :page-nav_order: 4 -:page-has_children: true // SPDX-FileCopyrightText: 2022 Unikie // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/development/persistent-storage.adoc b/Documentation/doc/development/persistent-storage.adoc index c4bcc16..e3db767 100644 --- a/Documentation/doc/development/persistent-storage.adoc +++ b/Documentation/doc/development/persistent-storage.adoc @@ -1,5 +1,4 @@ = Persistent storage -:page-parent: Development :page-nav_order: 2 // SPDX-FileCopyrightText: 2024-2025 Alyssa Ross <hi@alyssa.is> diff --git a/Documentation/doc/development/release.adoc b/Documentation/doc/development/release.adoc index 4ecbf03..2ab9d88 100644 --- a/Documentation/doc/development/release.adoc +++ b/Documentation/doc/development/release.adoc @@ -1,5 +1,4 @@ = Release Builds -:page-parent: Development // SPDX-FileCopyrightText: 2023 Alyssa Ross <hi@alyssa.is> // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/development/updates.adoc b/Documentation/doc/development/updates.adoc index 8746f97..1ec08c2 100644 --- a/Documentation/doc/development/updates.adoc +++ b/Documentation/doc/development/updates.adoc @@ -1,5 +1,4 @@ = Updating the OS -:page-parent: Development // SPDX-FileCopyrightText: 2025 Demi Marie Obenour <demiobenour@gmail.com> // SPDX-License-Identifier: GFDL-1.3-no-invariants-or-later OR CC-BY-SA-4.0 diff --git a/Documentation/doc/development/uuid-reference.adoc b/Documentation/doc/development/uuid-reference.adoc index 16279c8..21c8935 100644 --- a/Documentation/doc/development/uuid-reference.adoc +++ b/Documentation/doc/development/uuid-reference.adoc @@ -1,5 +1,4 @@ = UUID Reference -:page-parent: Development :page-nav_order: 6 // SPDX-FileCopyrightText: 2022 Alyssa Ross <hi@alyssa.is> diff --git a/Documentation/doc/index.adoc b/Documentation/doc/index.adoc index 3bf3934..a24d85f 100644 --- a/Documentation/doc/index.adoc +++ b/Documentation/doc/index.adoc @@ -1,5 +1,4 @@ = Spectrum Documentation -:page-nav_exclude: true :page-liquid: // SPDX-FileCopyrightText: 2022 Alyssa Ross <hi@alyssa.is> diff --git a/Documentation/doc/installation/binary-cache.adoc b/Documentation/doc/installation/binary-cache.adoc index 4feaad4..105e09d 100644 --- a/Documentation/doc/installation/binary-cache.adoc +++ b/Documentation/doc/installation/binary-cache.adoc @@ -1,5 +1,4 @@ = Setting Up Binary Cache -:page-parent: Build and Run :page-nav_order: 1 // SPDX-FileCopyrightText: 2022-2024 Alyssa Ross <hi@alyssa.is> diff --git a/Documentation/doc/installation/getting-spectrum.adoc b/Documentation/doc/installation/getting-spectrum.adoc index 22c1fe3..478b1fc 100644 --- a/Documentation/doc/installation/getting-spectrum.adoc +++ b/Documentation/doc/installation/getting-spectrum.adoc @@ -1,5 +1,4 @@ = Getting Spectrum -:page-parent: Build and Run :page-nav_order: 2 // SPDX-FileCopyrightText: 2022-2024 Alyssa Ross <hi@alyssa.is> diff --git a/Documentation/doc/installation/index.adoc b/Documentation/doc/installation/index.adoc index d1df2ed..225abc6 100644 --- a/Documentation/doc/installation/index.adoc +++ b/Documentation/doc/installation/index.adoc @@ -1,7 +1,5 @@ = Build and Run -:description: How to download and install Spectrum OS. :page-nav_order: 2 -:page-has_children: true :page-has_toc: false // SPDX-FileCopyrightText: 2022 Unikie diff --git a/Documentation/doc/using-spectrum/creating-custom-vms.adoc b/Documentation/doc/using-spectrum/creating-custom-vms.adoc index 68213c8..5b74084 100644 --- a/Documentation/doc/using-spectrum/creating-custom-vms.adoc +++ b/Documentation/doc/using-spectrum/creating-custom-vms.adoc @@ -1,5 +1,4 @@ = Creating Custom VMs -:page-parent: Using Spectrum // SPDX-FileCopyrightText: 2022, 2024 Alyssa Ross <hi@alyssa.is> // SPDX-FileCopyrightText: 2022 Unikie diff --git a/Documentation/doc/using-spectrum/index.adoc b/Documentation/doc/using-spectrum/index.adoc index 25347a4..9571b50 100644 --- a/Documentation/doc/using-spectrum/index.adoc +++ b/Documentation/doc/using-spectrum/index.adoc @@ -1,7 +1,5 @@ = Using Spectrum -:description: Exploring Spectrum OS. Using (=How-To-Guides), Configuring (adding smth). :page-nav_order: 3 -:page-has_children: true :page-has_toc: false // SPDX-FileCopyrightText: 2022 Unikie diff --git a/Documentation/doc/using-spectrum/running-vms.adoc b/Documentation/doc/using-spectrum/running-vms.adoc index 2b47fc0..d8a7732 100644 --- a/Documentation/doc/using-spectrum/running-vms.adoc +++ b/Documentation/doc/using-spectrum/running-vms.adoc @@ -1,5 +1,4 @@ = Running VMs -:page-parent: Using Spectrum :page-nav_order: 1 // SPDX-FileCopyrightText: 2022, 2024 Alyssa Ross <hi@alyssa.is> diff --git a/Documentation/doc/using-spectrum/vm-file-access.adoc b/Documentation/doc/using-spectrum/vm-file-access.adoc index 6189233..d4276d4 100644 --- a/Documentation/doc/using-spectrum/vm-file-access.adoc +++ b/Documentation/doc/using-spectrum/vm-file-access.adoc @@ -1,5 +1,4 @@ = VM File Access -:page-parent: Using Spectrum :page-nav_order: 1 // SPDX-FileCopyrightText: 2024-2025 Alyssa Ross <hi@alyssa.is> diff --git a/Documentation/gemset.nix b/Documentation/gemset.nix index 7b85a7f..b31a35e 100644 --- a/Documentation/gemset.nix +++ b/Documentation/gemset.nix @@ -165,17 +165,6 @@ }; version = "3.0.1"; }; - jekyll-include-cache = { - dependencies = ["jekyll"]; - groups = ["default"]; - platforms = []; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "01d2l6qrmjc42664ns83cv36jbvalcxqbkmj5i22fakka7jvkm67"; - type = "gem"; - }; - version = "0.2.1"; - }; jekyll-sass-converter = { dependencies = ["sass-embedded"]; groups = ["default"]; @@ -187,17 +176,6 @@ }; version = "3.1.0"; }; - jekyll-seo-tag = { - dependencies = ["jekyll"]; - groups = ["default"]; - platforms = []; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "0638mqhqynghnlnaz0xi1kvnv53wkggaq94flfzlxwandn8x2biz"; - type = "gem"; - }; - version = "2.8.0"; - }; jekyll-watch = { dependencies = ["listen"]; groups = ["default"]; @@ -219,17 +197,6 @@ }; version = "2.13.0"; }; - just-the-docs = { - dependencies = ["jekyll" "jekyll-include-cache" "jekyll-seo-tag" "rake"]; - groups = ["default"]; - platforms = []; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "0y2mvzg2vxb4lk1rfay8d405qij4ifa65ypz09qj0945wf6qgsmw"; - type = "gem"; - }; - version = "0.10.1"; - }; kramdown = { dependencies = ["rexml"]; groups = ["default"]; -- 2.51.2