This is an example of raw content blocks in Cloudpress. Usually, Cloudress will encode any HTML it encounters during the export. Using raw content blocks, you can tell Cloudpress not to encode the HTML but to export the content as-is.
For example, we may use MDX on the backend and want to embed JSX components:
@@begin_raw_content
<Chart year={year} color="#fcb32c" />
@@end_raw_content
Or, we may want to use special Markdoc tags:
@@begin_raw_content
{% callout type="note" %}
Tags are composable!
{% /callout %}
@@end_raw_content