Skip to content

The Reloaded MkDocs Theme



A Theme for MkDocs Material.
That resembles the look of Reloaded.

About

This it the NexusMods theme for Material-MkDocs, inspired by the look of Reloaded-II.

The overall wiki theme should look fairly close to the actual launcher appearance.

Setup From Scratch

  • Add this repository as submodule to docs/Reloaded.
  • Save the following configuration as mkdocs.yml in your repository root.
site_name: Reloaded MkDocs Theme
site_url: https://github.com/Reloaded-Project/Reloaded.MkDocsMaterial.Themes.R2

repo_name: Reloaded-Project/Reloaded.MkDocsMaterial.Themes.R2
repo_url: https://github.com/Reloaded-Project/Reloaded.MkDocsMaterial.Themes.R2

extra:
  social:
    - icon: fontawesome/brands/github
      link: https://github.com/Reloaded-Project
    - icon: fontawesome/brands/twitter
      link: https://twitter.com/thesewer56?lang=en-GB

extra_css:
  - Reloaded/Stylesheets/extra.css

markdown_extensions:
  - admonition
  - tables
  - pymdownx.details
  - pymdownx.highlight
  - pymdownx.superfences:
      custom_fences:
        - name: mermaid
          class: mermaid
          format: !!python/name:pymdownx.superfences.fence_code_format
  - pymdownx.tasklist
  - def_list
  - meta
  - md_in_html
  - attr_list
  - footnotes
  - pymdownx.tabbed:
      alternate_style: true
  - pymdownx.emoji:
      emoji_index: !!python/name:material.extensions.emoji.twemoji
      emoji_generator: !!python/name:material.extensions.emoji.to_svg

theme:
  name: material
  palette:
    scheme: reloaded-slate
  features:
    - navigation.instant

plugins:
  - search

nav:
  - Home: index.md
  • Add a GitHub Actions workload in .github/workflows/DeployMkDocs.yml.
name: MkDocs Build and Deploy

on:
  workflow_dispatch:
  push:
    branches: [ main ]
    paths:
      - "mkdocs.yml"
      - "docs/**"
  pull_request:
    branches: [ main ]
    paths:
      - "mkdocs.yml"
      - "docs/**"

jobs:
  build:
    runs-on: ubuntu-latest
    permissions:
      contents: read
      pages: write
      id-token: write
    steps:
      - name: Deploy MkDocs
        uses: Reloaded-Project/reloaded-project-configurations-rust/.github/actions/deploy-mkdocs-documentation@v1
        with:
          REQUIREMENTS: ./docs/requirements.txt
  • Push to GitHub, this should produce a GitHub Pages site.

Your page should then be live.

Tip

Refer to Contributing for instructions on how to locally edit and modify the wiki.

Note

For Reloaded3 theme use reloaded3-slate instead of reloaded-slate.

Note

If you run into issues deploying, make sure Settings->Pages has Build and Deployment source set as GitHub Actions.

Extra

Info

Most documentation pages will also include additional plugins; some which are used in the pages here. Here is a sample complete mkdocs.yml you can copy to your project for reference.

Technical Questions

If you have questions/bug reports/etc. feel free to Open an Issue.

Happy Documenting ❤️