I get a string, from a QML plugin. That string is HTML. This I pass to Sailfish.WebView, calling its loadHtml() method.
WebView renders the page (sans images).
I didn’t write the QML plugin, merely using its output.
Basically
CustomThing {
onContentChanged: web.loadHtml(content)
}
WebView { id: web
}