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



28
29
30
# File 'lib/paru/filter/line_block.rb', line 28

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