mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
16 lines
401 B
Plaintext
16 lines
401 B
Plaintext
|
{
|
||
|
"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('qgis','rocks'))",
|
||
|
"returns": "<dl><dt>qgis</dt><dd>rocks</dd></dl>"
|
||
|
}],
|
||
|
"tags": ["formatted", "map", "html"]
|
||
|
}
|