Skip to main content
All CollectionsForm, Portal & View Editor settingsAdvanced
Which HTML Tags are supported in Formula Fields?
Which HTML Tags are supported in Formula Fields?

Which HTML tags can I use with the "Render HTML Formula" feature?

Updated over a month ago

MiniExtensions supports rendering formula fields as HTML on the form and in the portal header. Here's a list of the supported HTML tags for your reference:

Supported HTML Tags

Text Structure Tags (styled):

  • <h1> - Large headings

  • <h2> - Medium headings

  • <h3> - Small headings

  • <p> - Paragraphs

  • <a> - Links

  • <blockquote> - Quoted content

  • <code> - Inline code

  • <pre> - Code blocks

List Tags (styled):

  • <ul> - Unordered lists (with bullets)

  • <ol> - Ordered lists (with numbers)

  • <li> - List items (implicitly styled through ul/ol)

Table Tags (styled):

  • <table> - Table container

  • <th> - Table headers

  • <td> - Table cells

  • Other table tags like <tr>, <thead>, <tbody> are supported but not explicitly styled

Iframe (explicitly allowed):

  • <iframe> - Added via DOMPurify's ADD_TAGS

Default DOMPurify allowed tags (supported but not specifically styled):

  • Text formatting: <b>, <i>, <em>, <strong>, <small>, <sub>, <sup>

  • Structure: <div>, <span>, <br>, <hr>

  • Media: <img>, <audio>, <video>

  • Others: <form>, <input>, <button>, <select>, <option>, etc.

Did this answer your question?