1*2810ac1bSKiyoung Kim-- This is the links-to-html.lua example from stackoverflow: 2*2810ac1bSKiyoung Kim-- https://stackoverflow.com/questions/40993488/convert-markdown-links-to-html-with-pandoc 3*2810ac1bSKiyoung Kimfunction Link(el) 4*2810ac1bSKiyoung Kim el.target = string.gsub(el.target, "%.md", ".html") 5*2810ac1bSKiyoung Kim return el 6*2810ac1bSKiyoung Kimend 7