module.exports = class Text constructor: (@string, @raw=false) -> toHtml: -> if @raw @string else @string .replace(/&/g, '&') .replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>')