liquid_feedback_frontend

view env/format/text_with_links.lua @ 1853:9c298b5832e7

Correctly determine own voting weight
author bsw
date Tue Mar 22 13:52:26 2022 +0100 (2022-03-22)
parents c06c22e8ee35
children
line source
1 function format.text_with_links(value)
2 value = encode.html(value)
3 value = encode.html_newlines(value)
4 value = string.gsub(value, "http[^%s:]*://[^%s]+", function(match)
5 return "<a href=\"" .. match .. "\">" .. match .. "</a>"
6 end)
7 return value
8 end

Impressum / About Us