When to use this component

Use the inset text component to differentiate a block of text from the content that surrounds it, for example:

  • quotes
  • examples
  • additional information about the page
Formatted example

This is a title inside an inset text box.

This is body text inside an inset or block quote text box.

HTML code
<blockquote>
    <h2>This is a title inside an inset text box.</h2>
    <p>This is body text inside an inset or block quote text box.</p>
</blockquote>
Markdown
> ## This is a title inside an inset text box.
>
> This is body text inside an inset or blockquote text box.