Hi all,
I'm wondering what the status is for rich and semantic markup for text content in the adapt-contrib-text component?
I'm wanting to add emphasis to some words, include an unordered list, and include a hyperlink. Is it best practice to use HTML in the JSON string? i.e:
{
"_id": "co1-a1-b1-c1",
"_parentId": "co1-a1-b1",
"_type": "component",
"_component": "text",
"_classes": "",
"_layout": "left",
"title": "co1-a1-b1-c1",
"displayTitle": "",
"body": "<p>Text with <em>emphasis</em>.</p><p>An unordered list:</p><ul><li>Item 1</li><li>Item 2</li><li>Item 3</li></ul><p>A <a href=\"http://https://community.adaptlearning.org\" target=\"_blank\">hyperlink</a>.",
"_pageLevelProgress": {
"_isEnabled": true
}
},