class Paru::PandocFilter::Inline

An Inline node @see hackage.haskell.org/package/pandoc-types-1.17.0.4/docs/Text-Pandoc-Definition.html#t:Inline

Public Class Methods

new(contents) click to toggle source

Create a new Inline node with contents @param contents [Array] the contents of this inline node

Calls superclass method
# File lib/paru/filter/inline.rb, line 31
def initialize(contents)
    super contents, true
end

Public Instance Methods

has_inline?() click to toggle source

Has this Inline node inline contents? Of course!

@return [Boolean] true

# File lib/paru/filter/inline.rb, line 45
def has_inline?()
    true
end
is_inline?() click to toggle source

Is this Inline node inline? Of course!

@return [Boolean] true

# File lib/paru/filter/inline.rb, line 38
def is_inline?()
    true
end