Sha256: 25ff721869713ed01e99aa25994c3516df3f86df2c359a77e8d9ee40ff10cb09

Contents?: true

Size: 1.92 KB

Versions: 30

Compression:

Stored size: 1.92 KB

Contents

require 'rd/element'
require 'rd/labeled-element'

module RD
  # Block-level Element of document tree. abstruct class.
  class BlockElement < Element
  end

  class Headline < BlockElement
    include NonterminalElement
    include LabeledElement

    MARK2LEVEL = {
      "=" => 1,
      "==" => 2,
      "===" => 3,
      "====" => 4,
      "+" => 5,
      "++" => 6
    }
    
    attr_accessor :level
    attr_reader :title
    
    def initialize(level_num)
      super()
      @level = level_num
      @title = []
    end
    
    def accept(visitor)
      visitor.visit_Headline(self)
    end

    def calculate_label
      ret = ""
      @title.each do |i|
	ret << i.to_label
      end
      ret
    end
    private :calculate_label
    
    def Headline.mark_to_level(mark_str)
      MARK2LEVEL[mark_str] or
	raise ArgumentError, "#{mark_str} is irregular for Headline mark."
    end

    def children
      @title
    end
  end
  
  class Include < BlockElement
    include TerminalElement
    
    attr_accessor :filename
    
    def initialize(filename)
      super()
      @filename = filename
    end
    
    def accept(visitor)
      visitor.visit_Include(self)
    end
  end # Include
  
  class TextBlock < BlockElement
    include NonterminalElement
    
    attr_accessor :content
    
    def initialize()
      super()
      @content = []
    end
    
    def accept(visitor)
      visitor.visit_TextBlock(self)
    end
    
    def children
      @content
    end
  end
  
  class Verbatim < BlockElement
    include TerminalElement
    
    attr_reader :content
    
    def initialize(content_strings = [])
      super()
      @content = content_strings  # Array of String
    end
    
    def accept(visitor)
      visitor.visit_Verbatim(self)
    end
    
    def each_line
      if @content.respond_to?(:each_line)
        @content.each_line {|i|
	  yield i
	}
      else
        @content.each {|i|
	  yield i
	}
      end
    end
  end
end

Version data entries

30 entries across 29 versions & 4 rubygems

Version Path
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/rdtool-0.6.38/lib/rd/block-element.rb
tdiary-5.0.8 vendor/bundle/gems/rdtool-0.6.38/lib/rd/block-element.rb
tdiary-5.0.5 vendor/bundle/gems/rdtool-0.6.38/lib/rd/block-element.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/rdtool-0.6.38/lib/rd/block-element.rb
tdiary-5.0.4 vendor/bundle/gems/rdtool-0.6.38/lib/rd/block-element.rb
tdiary-4.2.1 vendor/bundle/ruby/2.2.0/gems/rdtool-0.6.38/lib/rd/block-element.rb
nishidayuya-rd2odt-0.1.1.20090701.01 lib/rd2odt/rdtool/rd/block-element.rb
nishidayuya-rd2odt-0.1.1.20090704.01 lib/rd2odt/rdtool/rd/block-element.rb
nishidayuya-rd2odt-0.1.1.20090706.01 lib/rd2odt/rdtool/rd/block-element.rb
nishidayuya-rd2odt-0.1.1 lib/rd2odt/rdtool/rd/block-element.rb
tdiary-3.2.2.20130518 vendor/rdtool-0.6.38/lib/rd/block-element.rb
tdiary-3.2.2.20130508 vendor/rdtool-0.6.38/lib/rd/block-element.rb
tdiary-3.2.2.20130507 vendor/rdtool-0.6.38/lib/rd/block-element.rb
rdtool-0.6.38 lib/rd/block-element.rb
rdtool-0.6.37 lib/rd/block-element.rb
rdtool-0.6.36 lib/rd/block-element.rb
rdtool-0.6.35 lib/rd/block-element.rb
rdtool-0.6.34 lib/rd/block-element.rb
rdtool-0.6.33 lib/rd/block-element.rb
rdtool-0.6.32 lib/rd/block-element.rb