Extend description in content.json into a multi line
thomasbonte opened this issue · 1 comments
thomasbonte commented
Currently
"description": "TEXT"
Extend it to:
"description": [
{ "value" : "TEXT1",
"localise": true,
"url": {
"value": "URL1",
"localise": false
},
{ "value" : "TEXT2",
"localise": true,
]
The resulting description should become:
<p><a href="URL1">TEXT1</a></p>
<p>TEXT2</p>
thomasbonte commented
Not needed anymore.