Concepts
Things you should know before beginning
Last updated
function Link()
Show('Instead of a link, have some text!')
endStyle.em = Color.blue -- *Text* will be blue instead of italicised
Style.em = nil -- Revert to the default behaviourStyle.em = Combine(Style.em, Color.blue) -- *Text* will be blue as well as italicisedlocal _link = Link
function Link(target)
-- Make all links red (while keeping their normal behaviour)
return Combine(Color.red, _link(target)
end