Skip to content

Instantly share code, notes, and snippets.

@fredemmott
Created January 20, 2012 23:28
Show Gist options
  • Save fredemmott/1650195 to your computer and use it in GitHub Desktop.
Save fredemmott/1650195 to your computer and use it in GitHub Desktop.
module Rxhp
module Html
module Attributes
GLOBAL = {
:accesskey => String,
:class => String,
:contenteditable => %w'true false inherit',
:contextmenu => String,
:dir => %w'ltr rtl auto',
:draggable => %w'true false',
:dropzone => String,
:hidden => [true, false],
:id => /^[^ ]+$/,
:lang => String,
:spellcheck => %w'true false',
:style => String,
:tabindex => Integer,
:title => String,
}
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment