Skip to content

Instantly share code, notes, and snippets.

@mrkurt
Created July 21, 2010 20:17
Show Gist options
  • Save mrkurt/485051 to your computer and use it in GitHub Desktop.
Save mrkurt/485051 to your computer and use it in GitHub Desktop.
class Video < Rule
tag 'video'
type 'block-text-container'
required_attributes :src
optional_attributes :class, :width
process do |node|
"<div class=\"video\"><strong>#{node.attributes['src']}</strong>: #{node.children}</div>"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment