When your queries return Long Description fields containing HTML markers, you can quickly convert the fields to plain text in Power BI Desktop. This article explains how to add a custom column and remove the markers.
This example query fetches assets with long description fields:
mnt.assets?$select=ObjectID,LongDescription
To convert HTML to plain text:
try (Html.Table([LongDescription], {{"text",":root"}})) otherwise null