Class: Paru::PandocFilter::LineBlock

Inherits:
List show all
Defined in:
lib/paru/filter/line_block.rb

Overview

A LineBlock is a List of Lists of Inline nodes

Instance Method Summary collapse

Constructor Details

#initialize(contents) ⇒ LineBlock

Create a new LineBlock node based on contents

Parameters:

  • contents (Array)

    the contents of the LineBlock



30
31
32
# File 'lib/paru/filter/line_block.rb', line 30

def initialize(contents)
  super(contents, Para)
end