Added Cite function to sample.lua.

This commit is contained in:
John MacFarlane 2013-12-13 11:19:49 -08:00
parent ca3c292f30
commit b2aae73f14

View file

@ -181,6 +181,10 @@ function Span(s, attr)
return "<span" .. attributes(attr) .. ">" .. s .. "</span>"
end
function Cite(s)
return "<span class=\"cite\">" .. s .. "</span>"
end
function Plain(s)
return s
end