最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How do I include a markdown file in another markdown file using GLFM in pandoc via a Lua filter? - Stack Overflow

programmeradmin0浏览0评论

I am new to pandoc/Lua. I have a markdown file from our Gitlab repository I would like to locally convert using pandoc. The file contains ::include directives.

I have started doing a Lua filter for pandoc that replaces the ::include directives with the actual referred markdown. However, while the RawInline blocks I insert seem to be accepted, the --verbose output indicates that they are not rendered (the part I inserted is missing in the output HTML).

[INFO] Running filter gitlab-include.lua
[INFO] Completed filter gitlab-include.lua in 15 ms
[INFO] Not rendering RawInline (Format "markdown")[Markdown content included here]

The file in ::include{file=./my_file.md} is read correctly. If instead of RawInline I return the string, the unrendered markdown is included in the output. However, I did not manage to get the inserted content to be rendered as markdown.

Any clue as to what the filter is missing? Many thanks in advance.

The Lua filter is included below:

local function read_file(filepath)
    local file = io.open(filepath, "r")
    if not file then
        io.stderr:write("Cannot open file: " .. filepath .. "\n")
        return "**Error: Cannot include file " .. filepath .. "**"
    end
    local content = file:read("*all")   
    file:close()
    return pandoc.RawInline('markdown', content)
end

function replace_include(el)
    local pattern = "::include%{file=([^\"]+)%}"
    local filepath = el.text:match(pattern)
    if filepath then
        return read_file(filepath)
    end
    return el
end

return {
    { Str = replace_include }
}

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论