> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: About Rich Content ## Article: About Rich Content ## Article Link: https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/platform/about-rich-content.md ## Article Content: # About Rich Content When you use APIs, you may need to handle rich content. Rich content is a block of content that incorporates multiple content types. For example, you may have a block of rich content made up of a heading, a paragraph, an image, and a caption. A block of rich content is represented in the data as an object with nodes (sections) and decorations (styles), where each one can be a distinct type. Define rich content with a Ricos Document, which is a strictly defined JSON object structure. Learn more about [Ricos](https://dev.wix.com/docs/ricos/getting-started/introduction.md). Rich content is displayed in parts of the Wix interface that include different media types and text formatting, such as [blog](https://dev.wix.com/docs/rest/business-solutions/blog/introduction.md) posts. APIs associated with these parts of the interface can receive and return rich content. ## Plugins Some of Ricos' types are universally supported, but the ones that aren't need a specific plugin to be enabled for the type to be rendered. Wix APIs that consume rich content specify which plugins are enabled in their rich content field description. In the [Ricos playground](https://ricos.dev), you can enable and disable plugins to match the plugins enabled by the API that's consuming your rich content. ## Create a Ricos document You can either convert existing content into a Ricos document, or create a Ricos document from scratch using the [Ricos Playground](https://ricos.dev/). Here's a mini version of the playground: Learn more about [creating Ricos documents](https://dev.wix.com/docs/ricos/getting-started/create-a-ricos-document.md). When [developing sites](https://dev.wix.com/docs/develop-websites.md) or building an app with [Blocks](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/wix-blocks/about-wix-blocks.md), you can display rich content using the [`RichContentViewer`](https://dev.wix.com/docs/velo/velo-only-apis/$w/rich-content-viewer/introduction.md) element. ## See also - [Ricos](https://dev.wix.com/docs/ricos/getting-started/introduction.md) - [Ricos plugins](https://dev.wix.com/docs/ricos/api-reference/ricos-document.md#plugins)