Can I Control "Rich Content" Page Elements Using Velo Code?

@amandam Hello. Some progress today.
I figured out that by using the WIX UI Editor in Content Manager to create some Rich Text content and then query that record using wixData.query() I could examine its storage format and then hopefully replicate it for our own content.
Here is what I found


results in the following content of the details Rich Text field

details: '<p class="font_8">THIS IS <u><em><strong>A AN RTF IMPORT</strong></em></u> TEST</p>'

So it looks like standard HTML.
I was able to write this content to the collection using wixData.update() / wixData.insert(), so I have some way of getting content into our website.

I would much prefer using the advanced features of the Rich Content field, if I can get some documentation and code samples for rendering the formatting.

Thanks