Support table and table column sizing
All checks were successful
CI Pipeline / build (pull_request) Successful in 13s

This commit is contained in:
2025-12-03 13:50:56 +01:00
parent 00cabb6dfb
commit 843466549a
13 changed files with 520 additions and 30 deletions

View File

@@ -3,11 +3,12 @@
module Notare
module Nodes
class TableCell < Base
attr_reader :runs
attr_reader :runs, :width
def initialize
super
def initialize(width: nil)
super()
@runs = []
@width = width
end
def add_run(run)