Content
Description
Allows adhoc HTML markup or allow to display the html Content which is provided in body configuration.
Attributes
tile
=content
title
body
: HTML content.Also allow array of html content to be display.tag
:p
.If p tag is define then load the html content inside the p tag else load it in the div tag.
Example1
{
"tile": "content",
"title": "Content Title",
"body": "<p>Hello from content body</p>"
}
Example2
{
"tile": "content",
"title": "Content Title",
"body": [
"<p>Hello from content body</p>",
"<div>Hello from div tag</div>"
]
}