Class: Paru::PandocFilter::Block

Inherits:
Node
  • Object
show all
Defined in:
lib/paru/filter/block.rb

Overview

A Block level node.

Instance Attribute Summary

Attributes inherited from Node

#children, #parent

Instance Method Summary collapse

Methods inherited from Node

#ast_contents, #ast_type, #can_act_as_both_block_and_inline?, #each, from_markdown, #get_replacement, #has_been_replaced?, #has_block?, #has_children?, #has_class?, #has_inline?, #has_parent?, #has_string?, #initialize, #is_inline?, #is_leaf?, #is_node?, #is_root?, #markdown, #markdown=, #toMetadata, #to_ast, #to_s, #type

Methods included from ASTManipulation

#append, #delete, #each_depth_first, #find_index, #get, #insert, #prepend, #remove_at, #replace, #replace_at

Constructor Details

This class inherits a constructor from Paru::PandocFilter::Node

Instance Method Details

#is_block?Boolean

Is this node a block?

Returns:

  • (Boolean)

    true



31
32
33
# File 'lib/paru/filter/block.rb', line 31

def is_block?
  true
end