Options
All
  • Public
  • Public/Protected
  • All
Menu

Text Format

Hain supports restricted HTML for displaying Text by plugins.

You can use tags like:

  • <b>Bold</b>
  • <i>Italic</i>
  • <u>Underline</u>
  • <em>Emphasized</em>
  • <span>Span with style</span>

You should use these tags carefully to avoid breaking layout.

Example

function search(query, res) {
    res.add({
        title:    '<b>Bold</b> text',
        desc:    '<span style="color: blue">blue</span> text'
    });
}

Generated using TypeDoc