class Paru::PandocFilter::LineBlock

A LineBlock is a List of Lists of Inline nodes

Public Class Methods

new(contents) click to toggle source

Create a new LineBlock node based on contents

@param contents [Array] the contents of the LineBlock

Calls superclass method
# File lib/paru/filter/line_block.rb, line 28
def initialize(contents)
    super(contents, Para)
end