pandoc/tools/update-readme.lua

39 lines
1.3 KiB
Lua
Raw Normal View History

-- update README.md based on MANUAL.txt
-- assumes that the README.md has a div with id 'description'.
-- this gets replaced by the contents of the 'description' section
-- of the manual.
function Div(elem)
if elem.classes[1] and elem.classes[1] == 'description' then
local f = assert(io.open("MANUAL.txt", "r"))
local manual = f:read("*all")
f:close()
local description = {}
local i = 1
local include = false
local mdoc = pandoc.read(manual, "markdown")
local blocks = mdoc.blocks
while blocks[i] do
2017-12-30 19:46:08 +01:00
if blocks[i].t == 'Header' then
include = false
end
if include then
table.insert(description, pandoc.walk_block(blocks[i],
-- remove internal links
{ Link = function(el)
if el.target:match("^#") then
return el.content
end
end }))
end
2017-12-30 19:46:08 +01:00
if blocks[i].t == 'Header' and
blocks[i].identifier == 'description' then
include = true
end
i = i + 1
end
return pandoc.Div(description, pandoc.Attr("description",{},{}))
end
end