I\'m importing data from JIRA into a Google Doc. One of the fields would be the description, which is basically HTML text.
Is there any way to \"add\" this HTML text on
I was able to create a new Doc with styled html content from the change mentioned in my comment in this post:
var blob = Utilities.newBlob(content, {mimeType:"text/html"}); var newfile = Drive.Files.insert(resource, blob, {"convert":"true"});