@@ -15,6 +15,26 @@ function M.indent(str, indent)
15
15
return table.concat (lines , " \n " )
16
16
end
17
17
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
+
18
38
--- @param str string
19
39
function M .fix_indent (str )
20
40
local lines = vim .split (str , " \n " )
33
53
--- @param contents table<string , string>
34
54
function M .save (contents )
35
55
local readme = M .read (" README.md" )
56
+ contents .toc = M .toc (readme )
36
57
for tag , content in pairs (contents ) do
37
58
content = M .fix_indent (content )
38
59
content = content :gsub (" %%" , " %%%%" )
39
60
content = vim .trim (content )
40
- local pattern = " (<%!%-%- " .. tag .. " _start %-%->).*(<%!%-%- " .. tag .. " _end %-%->)"
61
+ local pattern = " (<%!%-%- " .. tag .. " :start %-%->).*(<%!%-%- " .. tag .. " :end %-%->)"
41
62
if not readme :find (pattern ) then
42
63
error (" tag " .. tag .. " not found" )
43
64
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
45
70
end
46
71
47
72
local fd = assert (io.open (" README.md" , " w+" ))
0 commit comments