view core/src/luan/modules/Html.luan @ 319:f6db49c294a7

rename Basic to Luan git-svn-id: https://luan-java.googlecode.com/svn/trunk@320 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Thu, 05 Feb 2015 21:55:49 +0000
parents 4fe6c9fed486
children fed1893821bf
line wrap: on
line source

java()
import "java:luan.modules.HtmlLuan"

encode = HtmlLuan.encode
parse = HtmlLuan.parse
_ENV.to_string = HtmlLuan.to_string



-- extras

function process_url_tags(html)
	for i, v in ipairs(html) do
		if type(v) == "table" and v.type == "tag" then
			if v.name == "url" then
				local url = v.attributes.url or html[i+1]
				v.name = "a"
				v.attributes.url = nil
				v.attributes.href = url
			elseif v.name == "/url" then
				v.name = "/a"
			end
		end
	end
end

function add_nofollow(html)
	for i, v in ipairs(html) do
		if type(v) == "table" and v.type == "tag" then
			if v.name == "a" then
				v.attributes.rel = "nofollow"
			end
		end
	end
end