mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 05:43:01 +00:00
46 lines
1 KiB
Lua
46 lines
1 KiB
Lua
|
|
||
|
|
||
|
local function get_reference()
|
||
|
local lines = {}
|
||
|
for line in io.lines(worldeditadditions_commands.modpath.."/Chat-Command-Reference.md") do
|
||
|
table.insert(lines, line)
|
||
|
end
|
||
|
return lines
|
||
|
end
|
||
|
|
||
|
local function group_by_heading(lines, max_level)
|
||
|
local groups = {}
|
||
|
local acc = {}
|
||
|
|
||
|
for i,line in ipairs(lines) do
|
||
|
if worldeditadditions.str_starts(line, "#") then
|
||
|
local _, _, heading, headingtext = line:find("(#+)%s*(.*)")
|
||
|
if #heading <= max_level then
|
||
|
table.insert(groups, {
|
||
|
level = #heading,
|
||
|
heading = headingtext,
|
||
|
text = table.concat(acc, "\n")
|
||
|
})
|
||
|
acc = {}
|
||
|
end
|
||
|
else
|
||
|
table.insert(acc, line)
|
||
|
end
|
||
|
end
|
||
|
return groups
|
||
|
end
|
||
|
|
||
|
function worldeditadditions.doc.parse_reference()
|
||
|
local lines = get_reference()
|
||
|
local headings = worldeditadditions.table_filter(
|
||
|
group_by_heading(lines, 2),
|
||
|
function(item, i) return item.level ~= 2 end
|
||
|
)
|
||
|
for i,value in ipairs(headings) do
|
||
|
print(i, "level", level, "heading", heading, "text", text)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
|
||
|
worldeditadditions.doc.parse_reference()
|