mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
16 lines
473 B
Plaintext
16 lines
473 B
Plaintext
{
|
|
"name": "map_to_html_table",
|
|
"type": "function",
|
|
"groups": ["Maps"],
|
|
"description": "Merge map elements into a HTML table string.",
|
|
"arguments": [{
|
|
"arg": "map",
|
|
"description": "the input map"
|
|
}],
|
|
"examples": [{
|
|
"expression": "map_to_html_table(map('1','one','2','two'))",
|
|
"returns": "<table><thead><tr><th>1</th><th>2</th></tr></thead><tbody><tr><td>one</td><td>two</td></tr></tbody></table>"
|
|
}],
|
|
"tags": ["formatted", "map", "html"]
|
|
}
|