I had a wild idea that I could build a website blog for an unsophisticated user friend using Google Drive Documents to back it. I was able to create a contentService that c
Perhaps this would work for you...
function doGet() { var blob = DriveApp.getFileById('myFileId').getAsHTML(); return HtmlService.createHtmlOutput(blob); }