33 lines
741 B
JSON
33 lines
741 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/{{ link.url }}",
|
|
{% 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
|
|
}
|
|
]
|