32 lines
726 B
JSON
32 lines
726 B
JSON
---
|
|
---
|
|
|
|
[
|
|
{% for link in site.data.links_en %}
|
|
{% if link.hr != true %}
|
|
{
|
|
"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 %}
|
|
},
|
|
{% 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
|
|
}
|
|
]
|