Bulleted List in Callout or Quote

I’m trying include a paragraph followed by a bulleted list in a callout or a quote, but Ghost doesn’t seem to support either.

The bulleted list formatting is lost when pasting into a callout.

When selecting the “quote” option after formatting the bulleted list, the bulleted list formatting is also lost, with each bullet becoming a paragraph

I’m trying to cite/quote a document where the source material contains a bulleted list. What’s the best way?

If you want advanced functionality beyond what is possible with the Ghost editor, you can use the HTML card, and recreate your markup in there.

For example:

<blockquote>
  <ul>
    <li>Your</li>
    <li>bulleted</li>
    <li>list.</li>
  </ul>
</blockquote

Thanks! So much is handled by other features, I forgot about the HTML option. That works fo rme.