Skip to content
New issue

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

support table #59

Open
Labradors opened this issue May 28, 2016 · 1 comment
Open

support table #59

Labradors opened this issue May 28, 2016 · 1 comment

Comments

@Labradors
Copy link

How does this support table?

@davidhowe
Copy link

You can insert html code for table support. Eg.

var tableText = "<br><table style=\"border-collapse:collapse\">" for (r in 0..rows) { tableText += "<tr>" for (c in 0..columns) { tableText += if (r == 0) { "<td style=\"border: 1px solid black ;\">Col $c</td>" } else { "<td style=\"border: 1px solid black ;\"></td>" } } tableText += "</tr>" } tableText += "</table>"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants