Interactions between WebView and ScrollView

Please forgive as I’m not good at explainations. However I would like to implement a webview inside a stackpanel inside a scrollview.

The idea is to create a typical news article page with an image and some metadata about the article at the top of the page and the articles story below. I would also like to add some animations to the image when scrolling, much like in the scrolling animations setup. Only problem is that the text comes as HTML from the API. Hence I have to use the WebView.

Problem here is firstly I haven’t found a way to set the WebView to max height of the content rendered in it as well as bind the scrolling action to the external parent scrollview.

How may I get the outcome and user experience I’m aiming for.

I haven’t found a way to set the WebView to max height of the content rendered

I don’t think that is possible.

bind the scrolling action to the external parent scrollview

I would guess that this won’t be a good experience anyway.

How may I get the outcome and user experience I’m aiming for.

I would clean the HTML on a server and send the text to the device after that.