@@ -7,23 +7,28 @@ function M.index(plugin)
7
7
if Config .options .readme .skip_if_doc_exists and vim .loop .fs_stat (plugin .dir .. " /doc" ) then
8
8
return {}
9
9
end
10
+ local files = vim .tbl_flatten (vim .tbl_map (function (file )
11
+ return vim .fn .expand (plugin .dir .. " /" .. file , false , true )
12
+ end , Config .options .readme .files ))
10
13
--- @type table<string ,{ file : string , tag : string , line : string } >
11
14
local tags = {}
12
- for _ , file in ipairs (Config . options . readme . files ) do
13
- file = plugin . dir .. " / " .. file
15
+ for _ , file in ipairs (files ) do
16
+ file = Util . norm ( file )
14
17
if vim .loop .fs_stat (file ) then
18
+ local rel_file = file :sub (# plugin .dir + 1 )
19
+ local tag_filename = string.gsub (plugin .name .. vim .fn .fnamemodify (rel_file , " :h:gs?/?-?" ), " -$" , " " )
15
20
local lines = vim .split (Util .read_file (file ), " \n " )
16
21
for _ , line in ipairs (lines ) do
17
22
local title = line :match (" ^#+%s*(.*)" )
18
23
if title then
19
- local tag = plugin . name .. " -" .. title :lower ():gsub (" %W+" , " -" )
24
+ local tag = tag_filename .. " -" .. title :lower ():gsub (" %W+" , " -" )
20
25
tag = tag :gsub (" %-+" , " -" ):gsub (" %-$" , " " )
21
26
line = line :gsub (" ([%[%]/])" , " \\ %1" )
22
- tags [tag ] = { tag = tag , line = line , file = plugin . name .. " .md" }
27
+ tags [tag ] = { tag = tag , line = line , file = tag_filename .. " .md" }
23
28
end
24
29
end
25
30
table.insert (lines , [[ <!-- vim: set ft=markdown: -->]] )
26
- Util .write_file (Config .options .readme .root .. " /doc/" .. plugin . name .. " .md" , table.concat (lines , " \n " ))
31
+ Util .write_file (Config .options .readme .root .. " /doc/" .. tag_filename .. " .md" , table.concat (lines , " \n " ))
27
32
end
28
33
end
29
34
return tags
0 commit comments