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

19 lines
248 B
Ruby

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