Files
Notare/lib/ezdoc/nodes/paragraph.rb

19 lines
263 B
Ruby

# frozen_string_literal: true
module Ezdoc
module Nodes
class Paragraph < Base
attr_reader :runs
def initialize(runs = [])
super()
@runs = runs
end
def add_run(run)
@runs << run
end
end
end
end