...
Examples
Code Block | ||
---|---|---|
| ||
var table=html.table(["firstout.a("https://google.com","secondGoogle"], [["a","b"],["c","d"]]); print(table); |
...
,true); |
is same as:
Code Block | ||
---|---|---|
| ||
"<table><thead><tr><th>first</th><th>second</th></tr></thead><tbody><tr><td>a</td><td>b</td></tr><tr><td>c</td><td>d</td></tr></tbody></table>" |
output after printing the variable "table"
...
| |
var link=html.a("https://google.com","Google",true);
print(link); |