QGIS/resources/function_help/json/map_to_html_dl

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
423 B
Plaintext
Raw Permalink Normal View History

2022-11-02 16:43:29 +01:00
{
"name": "map_to_html_dl",
"type": "function",
"groups": ["Maps"],
"description": "Merge map elements into a HTML definition list string.",
"arguments": [{
"arg": "map",
"description": "the input map"
}],
"examples": [{
"expression": "map_to_html_dl(map('1','one','2','two'))",
"returns": "<dl><dt>1</dt><dd>one</dd><dt>2</dt><dd>two</dd></dl>"
2022-11-02 16:43:29 +01:00
}],
"tags": ["formatted", "map", "html"]
}