Module: Markaby

Defined in:
lib/markaby.rb,
lib/markaby/tags.rb,
lib/markaby/view.rb,
lib/markaby/builder.rb,
lib/markaby/cssproxy.rb,
lib/markaby/template.rb

Defined Under Namespace

Classes: Builder, CssProxy, Template, View

Constant Summary collapse

VERSION =
'0.2'
TAGS =
[
  :a, :abbr, :acronym, :span, :b, :caption, :del, :cite, :code, :col,
  :colgroup, :dd, :dfn, :dt, :em, :fieldset, :i, :img, :ins, :kbd, :p,
  :label, :legend, :li, :optgroup, :option, :select, :small, :span, :strong,
  :sub, :sup,  :tbody, :td, :textarea, :thead, :title, :th, :tr, :tfoot, :tt
]
BIG_TAGS =
[
  :address, :blockquote, :body, :div, :dl, :form, :h1, :h2, :h3, :head,
  :noscript, :object, :ol, :pre, :q, :samp, :script, :style, :table, :ul
]
SELF_CLOSING_TAGS =
[
  :hr, :br, :link, :meta, :input
]