Skip to content

Commit f4720ee

Browse files
committed
feat(docs): added toc generator
1 parent 46d0cdb commit f4720ee

File tree

1 file changed

+27
-2
lines changed

1 file changed

+27
-2
lines changed

lua/lazy/docs.lua

+27-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,26 @@ function M.indent(str, indent)
1515
return table.concat(lines, "\n")
1616
end
1717

18+
function M.toc(md)
19+
local toc = {}
20+
local lines = vim.split(md, "\n")
21+
local toc_found = false
22+
for _, line in ipairs(lines) do
23+
local hash, title = line:match("^(#+)%s*(.*)")
24+
if hash then
25+
if toc_found then
26+
local anchor = string.gsub(title:lower(), "[^\32-\126]", "")
27+
anchor = string.gsub(anchor, " ", "-")
28+
toc[#toc + 1] = string.rep(" ", #hash - 1) .. "- [" .. title .. "](#" .. anchor .. ")"
29+
end
30+
if title:find("Table of Contents") then
31+
toc_found = true
32+
end
33+
end
34+
end
35+
return M.fix_indent(table.concat(toc, "\n"))
36+
end
37+
1838
---@param str string
1939
function M.fix_indent(str)
2040
local lines = vim.split(str, "\n")
@@ -33,15 +53,20 @@ end
3353
---@param contents table<string, string>
3454
function M.save(contents)
3555
local readme = M.read("README.md")
56+
contents.toc = M.toc(readme)
3657
for tag, content in pairs(contents) do
3758
content = M.fix_indent(content)
3859
content = content:gsub("%%", "%%%%")
3960
content = vim.trim(content)
40-
local pattern = "(<%!%-%- " .. tag .. "_start %-%->).*(<%!%-%- " .. tag .. "_end %-%->)"
61+
local pattern = "(<%!%-%- " .. tag .. ":start %-%->).*(<%!%-%- " .. tag .. ":end %-%->)"
4162
if not readme:find(pattern) then
4263
error("tag " .. tag .. " not found")
4364
end
44-
readme = readme:gsub(pattern, "%1\n\n```lua\n" .. content .. "\n```\n\n%2")
65+
if tag == "toc" then
66+
readme = readme:gsub(pattern, "%1\n\n" .. content .. "\n\n%2")
67+
else
68+
readme = readme:gsub(pattern, "%1\n\n```lua\n" .. content .. "\n```\n\n%2")
69+
end
4570
end
4671

4772
local fd = assert(io.open("README.md", "w+"))

0 commit comments

Comments
 (0)