Sign in
android
/
platform
/
external
/
libcap
/
1c30f4b4fbd2fdae206461cd5c87b0609f650a59
/
.
/
doc
/
md2html.lua
blob: c2677d88ba37a029c8c5cafc85f277eda0b849cc [
file
] [
log
] [
blame
]
-- This is the links-to-html.lua example from stackoverflow:
-- https://stackoverflow.com/questions/40993488/convert-markdown-links-to-html-with-pandoc
function
Link
(
el
)
el
.
target
=
string
.
gsub
(
el
.
target
,
"%.md"
,
".html"
)
return
el
end