Improvements to the Accordion Component

The accordion component has been upgraded so that you can now use your in-browser cmd+f search to look for text that is otherwise hidden.

  • Improved accessibility for all of our customers who are leveraging the <Accordion> component
  • Improved SEO indexing of content (more html is now generated on the server-side instead of client-side)

Try searching for burst on this page: https://dev.hume.ai/docs/expression-measurement/faq

Support for embedding local assets

We’ve added support for embedding local assets in your docs. This is useful for displaying PDFs, images, videos, and other assets into your docs.

To embed an asset, you can use the embed tag.

1<embed src="./path/to/asset.pdf" type="application/pdf" />
2<embed src="./path/to/asset.mp4" type="video/mp4" />
3<embed src="./path/to/asset.png" type="image/png" />

Read more here