Appearance
Topol HTML/Raw block
The HTML block renders an mj-raw, passing the raw markup in content straight through to the output.
ts
interface TopolRawBlock extends TopolBlock {
tagName: "mj-raw";
attributes: {
containerWidth: number;
};
content: string;
}