Module | Markaby |
In: |
lib/markaby.rb
lib/markaby/rails.rb lib/markaby/cssproxy.rb lib/markaby/template.rb lib/markaby/builder.rb lib/markaby/tags.rb |
Markaby is a module containing all of the great Markaby classes that do such an excellent job.
VERSION | = | '0.5' | ||
FORM_TAGS | = | [ :form, :input, :select, :textarea ] | ||
SELF_CLOSING_TAGS | = | [ :base, :meta, :link, :hr, :br, :param, :img, :area, :input, :col ] | ||
NO_PROXY | = | [ :hr, :br ] | ||
AttrCore | = | [:id, :class, :style, :title] | Common sets of attributes. | |
AttrI18n | = | [:lang, 'xml:lang'.intern, :dir] | ||
AttrEvents | = | [:onclick, :ondblclick, :onmousedown, :onmouseup, :onmouseover, :onmousemove, :onmouseout, :onkeypress, :onkeydown, :onkeyup] | ||
AttrFocus | = | [:accesskey, :tabindex, :onfocus, :onblur] | ||
AttrHAlign | = | [:align, :char, :charoff] | ||
AttrVAlign | = | [:valign] | ||
Attrs | = | AttrCore + AttrI18n + AttrEvents |