Skip to content

Commit

Permalink
add cmd option for rows/columns/cells (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
lvjr committed Jun 19, 2021
1 parent 0363478 commit 48eeb6e
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions tabularray.sty
Expand Up @@ -1527,6 +1527,7 @@
{ background } {#1},
preto .code:n = \__tblr_cell_preto_text:n {#1},
appto .code:n = \__tblr_cell_appto_text:n {#1},
cmd .code:n = \__tblr_cell_process_text:n {#1},
fg .code:n = \__tblr_cell_preto_text:n { \color{#1} },
font .code:n = \__tblr_cell_gput:nn { font } { #1 \selectfont },
unknown .code:n = \__tblr_cell_unknown_key:V \l_keys_key_str,
Expand Down Expand Up @@ -1576,6 +1577,23 @@
}
\cs_generate_variant:Nn \__tblr_cell_appto_text:nnn { nen, enn, een }

\cs_new_protected:Npn \__tblr_cell_process_text:n #1
{
\__tblr_cell_process_text:een
{ \int_use:N \c@rownum } { \int_use:N \c@colnum } {#1}
}

\cs_new_protected:Npn \__tblr_cell_process_text:nnn #1 #2 #3
{
\tl_set:Nx \l__tblr_cell_text_tl
{
{ \__tblr_spec_item:nn { text } { [#1][#2] } }
}
\tl_put_left:Nn \l__tblr_cell_text_tl {#3}
\__tblr_spec_gput:nnV { text } { [#1][#2] } \l__tblr_cell_text_tl
}
\cs_generate_variant:Nn \__tblr_cell_process_text:nnn { nen, enn, een }

\cs_new_protected:Npn \__tblr_cell_unknown_key:n #1
{
\regex_match:NnTF \c__tblr_is_color_key_regex {#1}
Expand Down Expand Up @@ -1783,6 +1801,7 @@
{ \int_use:N \c@colnum } { coefficient } {#1},
preto .code:n = \__tblr_preto_text_for_every_column_cell:n {#1},
appto .code:n = \__tblr_appto_text_for_every_column_cell:n {#1},
cmd .code:n = \__tblr_process_text_for_every_column_cell:n {#1},
leftsep .code:n = \__tblr_data_gput:nene { column }
{ \int_use:N \c@colnum } { leftsep } { \dim_eval:n {#1} },
rightsep .code:n = \__tblr_data_gput:nene { column }
Expand Down Expand Up @@ -1821,6 +1840,14 @@
}
}

\cs_new_protected:Npn \__tblr_process_text_for_every_column_cell:n #1
{
\int_step_inline:nn { \c@rowcount }
{
\__tblr_cell_process_text:nen {##1} { \int_use:N \c@colnum } {#1}
}
}

\regex_const:Nn \c__tblr_is_number_key_regex { ^[\+\-]? (\d+|\d*\.\d+)$ }
\cs_new_protected:Npn \__tblr_column_unknown_key:n #1
Expand Down Expand Up @@ -1938,6 +1965,7 @@
{ coefficient } {#1},
preto .code:n = \__tblr_preto_text_for_every_row_cell:n {#1},
appto .code:n = \__tblr_appto_text_for_every_row_cell:n {#1},
cmd .code:n = \__tblr_process_text_for_every_row_cell:n {#1},
abovesep .code:n = \__tblr_data_gput:nene { row } { \int_use:N \c@rownum }
{ abovesep } { \dim_eval:n {#1} },
belowsep .code:n = \__tblr_data_gput:nene { row } { \int_use:N \c@rownum }
Expand Down Expand Up @@ -1978,6 +2006,14 @@
}
}
\cs_new_protected:Npn \__tblr_process_text_for_every_row_cell:n #1
{
\int_step_inline:nn { \c@colcount }
{
\__tblr_cell_process_text:enn { \int_use:N \c@rownum } {##1} {#1}
}
}
\cs_new_protected:Npn \__tblr_row_unknown_key:n #1
{
\regex_match:NnTF \c__tblr_is_number_key_regex {#1}
Expand Down

0 comments on commit 48eeb6e

Please sign in to comment.