musescore/musescore-connect

Extend description in content.json into a multi line

thomasbonte opened this issue · 1 comments

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>

Not needed anymore.