module MetaRuby::GUI::HTML
Basic functionality to generate HTML
pages
The core functionality is in {Page}
Constants
- RESSOURCES_DIR
The directory relative to which ressources (such as css or javascript files) are resolved by default
Public Class Methods
escape_html(string)
click to toggle source
Escape the string to include in HTML
@param [String] string @return [String]
# File lib/metaruby/gui/html.rb, line 16 def self.escape_html(string) string. gsub('<', '<'). gsub('>', '>') end