Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Examples

Code Block
languagejs
var table=html.table(["firstout.a("https://google.com","secondGoogle"],
						[["a","b"],["c","d"]]);
print(table);

...

,true);

is same as:

Code Block
languagexml
"<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"

...

js
var link=html.a("https://google.com","Google",true);
print(link);