Module: Mml::Base::Content::Annotation

Included in:
V2::Annotation, V3::Annotation, V4::Annotation
Defined in:
lib/mml/base/content/annotation.rb

Overview

annotation is a non-XML annotation for semantic markup. Used within semantics element.

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/mml/base/content/annotation.rb', line 9

def self.included(klass)
  klass.class_eval do
    attribute :definition_url, :string
    attribute :encoding_value, :string
    attribute :value, :string

    xml do
      namespace Mml::Namespace
      element "annotation"

      map_content to: :value
      map_attribute "definitionURL", to: :definition_url
      map_attribute "encoding", to: :encoding_value
    end
  end
end