Documentation: Fix order, title, and link to SMZ3
This commit is contained in:
parent
6aef6f2c11
commit
c471a70b35
|
@ -38,7 +38,7 @@ def create_ordered_tutorials_file():
|
|||
import json
|
||||
with open(os.path.join("WebHostLib", "static", "assets", "tutorial", "tutorials.json")) as source:
|
||||
data = json.load(source)
|
||||
data = sorted(data, key=lambda entry: entry["gameTitle"])
|
||||
data = sorted(data, key=lambda entry: entry["gameTitle"].lower())
|
||||
with open(os.path.join("WebHostLib", "static", "generated", "tutorials.json"), "w") as target:
|
||||
json.dump(data, target)
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Super Metroid Setup Guide
|
||||
# SMZ3 Setup Guide
|
||||
|
||||
## Required Software
|
||||
|
||||
|
|
|
@ -356,8 +356,8 @@
|
|||
"files": [
|
||||
{
|
||||
"language": "English",
|
||||
"filename": "smz3/multiworld_en.md",
|
||||
"link": "smz3/multiworld/en",
|
||||
"filename": "SMZ3/multiworld_en.md",
|
||||
"link": "SMZ3/multiworld/en",
|
||||
"authors": [
|
||||
"lordlou"
|
||||
]
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
{% include 'header/oceanHeader.html' %}
|
||||
<div id="games" class="markdown">
|
||||
<h1>Currently Supported Games</h1>
|
||||
{% for game_name, world in worlds.items() | sort %}
|
||||
{% for game_name, world in worlds.items() | sort(attribute=0) %}
|
||||
<h2>{{ game_name }}</h2>
|
||||
<p>
|
||||
{{ world.__doc__ | default("No description provided.", true) }}<br />
|
||||
|
|
Loading…
Reference in New Issue