class Paru::PandocFilter::IntValue
An IntValue
represents some sort of integer metadata about block or inline nodes
Attributes
value[RW]
Public Class Methods
new(value)
click to toggle source
# File lib/paru/filter/int_value.rb, line 30 def initialize(value) @value = value end
Public Instance Methods
to_ast()
click to toggle source
Create an AST representation of this Node
@return [Hash]
# File lib/paru/filter/int_value.rb, line 37 def to_ast() @value end