markup.Parse
Example
Renders a markup string on the HUD.
The the <colour> tag can also be written as <color>, and the <font> tag can also be written as <face>
local parsed = markup.Parse("<font=Default>changed font</font>\n<colour=255,0,255,255>changed colour</colour>")
hook.Add("HUDPaint", "MarkupTest", function()
parsed:Draw(100, 100, TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER)
end)
Output: 
