liquid_feedback_frontend

view env/format/text_with_links.lua @ 1726:65b8703e2d8a

Allow to overwrite quick guide links in sidebar
author bsw
date Tue Sep 28 13:40:24 2021 +0200 (2021-09-28)
parents 4a5a79a37db1
children c06c22e8ee35
line source
1 function format.text_with_links(value)
2 value = encode.html(value)
3 value = string.gsub(value, "http[^%s:]*://[^%s]+", function(match)
4 return "<a href=\"" .. match .. "\">" .. match .. "</a>"
5 end)
6 return value
7 end

Impressum / About Us