Text wrapping only really makes sense when the table width()
has been set.
wrap(ht) wrap(ht) <- value set_wrap(ht, row, col, value ) map_wrap(ht, row, col, fn)
ht | A huxtable. |
---|---|
row | A row specifier. See rowspecs for details. |
col | An optional column specifier. |
fn | A mapping function. See mapping-functions for details. |
value | A logical vector or matrix. Set to |
wrap()
returns the wrap
property.
set_wrap()
returns the modified huxtable.
long_text <- paste( rep("Some long text.", 10), collapse = " " ) ht <- huxtable(Long = long_text) width(ht) <- 0.2 wrap(ht) <- TRUE if (FALSE) { quick_html(ht) }