Updated Wiki content

OrcaSlicerBot
2026-04-08 15:57:48 +00:00
parent 7691b0bf73
commit 069c99ad74
3 changed files with 4 additions and 4 deletions

@@ -155,7 +155,7 @@ def generate_nav(base_path: Path) -> list:
# Check for home.md -> becomes index.md # Check for home.md -> becomes index.md
if (base_path / 'home.md').exists(): if (base_path / 'home.md').exists():
nav.append(("home", "index.md")) nav.append(("Home", "index.md"))
# Scan all top-level folders that contain markdown files # Scan all top-level folders that contain markdown files
top_level_folders = sorted( top_level_folders = sorted(

@@ -109,7 +109,7 @@ copyright: Copyright © 2022-2026 Li Jiang. All rights reserved.
# Navigation structure based on home.md # Navigation structure based on home.md
nav: nav:
- home: index.md - Home: index.md
- Calibration: - Calibration:
- "Calibration Guide": calibration/calibration_guide.md - "Calibration Guide": calibration/calibration_guide.md
- "Adaptive Pressure Advance": calibration/adaptive_pressure_advance_calib.md - "Adaptive Pressure Advance": calibration/adaptive_pressure_advance_calib.md

@@ -26,9 +26,9 @@
<div class="md-header__topic" data-md-component="header-topic"> <div class="md-header__topic" data-md-component="header-topic">
<span class="md-ellipsis"> <span class="md-ellipsis">
{% if nav.homepage %} {% if nav.homepage %}
<a href="{{ nav.homepage.url|url }}" style="color: inherit; text-decoration: none;" title="Return to wiki homepage">Home</a> <a href="{{ nav.homepage.url|url }}" style="color: inherit; text-decoration: none;" title="Return to wiki homepage">home</a>
{% else %} {% else %}
<a href="index.html" style="color: inherit; text-decoration: none;" title="Return to wiki homepage">Home</a> <a href="index.html" style="color: inherit; text-decoration: none;" title="Return to wiki homepage">home</a>
{% endif %} {% endif %}
</span> </span>
</div> </div>