class Paru::PandocFilter::Note

A Note node like a foot note or end note. It is a special node in the sense that itself is an Inline level node, but its contents are Block level.

Public Instance Methods

can_act_as_both_block_and_inline?() click to toggle source

Although Note is defined to be inline, often it will act like a block element.

@return [Boolean] true

# File lib/paru/filter/note.rb, line 47
def can_act_as_both_block_and_inline?
    true
end
has_block?() click to toggle source

Has this Note block contents?

@return [Boolean] true

# File lib/paru/filter/note.rb, line 32
def has_block?
    true
end
has_inline?() click to toggle source

Has this Note inline contents?

@return [Boolean] false

# File lib/paru/filter/note.rb, line 39
def has_inline?
    false
end