We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want a table like this: `
but it doesn't work.
docx.table [['1','2','3','4'],['5','6','7','8'],['9','10','11','12','13']] do cell_style rows[0][0], rowspan: 2 cell_style rows[0][1], colspan: 2, rowspan: 2 cell_style rows[0][2], rowspan: 2 end
The text was updated successfully, but these errors were encountered:
did you finally solve the this problem?
Sorry, something went wrong.
@KYNE-sun I'm unsure if this is helpful after five years 😆 but check this out.
docx.table [%w(11 1213 14), %w(21 22 23 24)], border_size: 1 do cell_style rows[0][0], rowspan: 2 cell_style rows[0][1], colspan: 2 cell_style rows[0][2], rowspan: 2 end
Reference: https://github.com/urvin-compliance/caracal?tab=readme-ov-file#tables
No branches or pull requests
I want a table like this:
`
but it doesn't work.
docx.table [['1','2','3','4'],['5','6','7','8'],['9','10','11','12','13']] do
cell_style rows[0][0], rowspan: 2
cell_style rows[0][1], colspan: 2, rowspan: 2
cell_style rows[0][2], rowspan: 2
end
The text was updated successfully, but these errors were encountered: