Implement table styles
All checks were successful
CI Pipeline / build (pull_request) Successful in 14s
All checks were successful
CI Pipeline / build (pull_request) Successful in 14s
This commit is contained in:
@@ -3,11 +3,12 @@
|
||||
module Notare
|
||||
module Nodes
|
||||
class Table < Base
|
||||
attr_reader :rows
|
||||
attr_reader :rows, :style
|
||||
|
||||
def initialize
|
||||
super
|
||||
def initialize(style: nil)
|
||||
super()
|
||||
@rows = []
|
||||
@style = style
|
||||
end
|
||||
|
||||
def add_row(row)
|
||||
|
||||
Reference in New Issue
Block a user