minetest_modding_book/sitemap.json

33 lines
745 B
JSON

---
---
{% assign pages = site.en | sort: "idx" %}
[
{% for link in pages %}
{
"idx": {{ link.idx }},
"title": "{{ link.title }}",
"loc": "https://rubenwardy.com/minetest_modding_book/en/{{ link.link }}",
{% if link.description %}
"description": "{{ link.description }}",
{% endif %}
"priority": 1
{% if link.num %}, "chapter_number": {{ link.num }}{% endif %}
},
{% endfor %}
{
"title": "Lua Modding API Reference",
"loc": "https://rubenwardy.com/minetest_modding_book/lua_api.html",
"description": "lua_api.html is an HTML version of lua_api.txt",
"priority": 0.75
},
{
"title": "Download Examples",
"loc": "https://github.com/rubenwardy/minetest_modding_book/archive/examples.zip",
"priority": 0.5
}
]