links-md-to-html.lua 145 B

1234567
  1. function Link(el)
  2. if not string.find(el.target, "://") then
  3. el.target = string.gsub(el.target, "%.md", ".html")
  4. end
  5. return el
  6. end