I have such HTML
<body>
<p>https://www.google.com</p>
<p>foo@bar.com</p>
</body>
Is there any way to tell WebView to auto linkify content, and render like if it was:
<body>
<p><a href="https://www.google.com">https://www.google.com</a></p>
<p><a href="mailto:foo@bar.com">foo@bar.com</a></p>
</body>