Files
Notare/lib/notare/nodes/table_cell.rb
mathias234 843466549a
All checks were successful
CI Pipeline / build (pull_request) Successful in 13s
Support table and table column sizing
2025-12-03 13:50:56 +01:00

20 lines
294 B
Ruby

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