mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-04-18 08:13:31 -07:00
Documentation: Fix order, title, and link to SMZ3
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user