display the content of a google sheet cell in a web page
问题 I have google sheet with a cell containing html code. I would like to know the best way to show this html in a webpage. I have tried with google spreadsheets API and google visualization API... 回答1: Using Google Apps Script, this can be as simple as: function doGet() { var spreadsheet = SpreadsheetApp.openById("0Aq4s9w_HxMs7dFVuQ0hDaWl1VVZsQ1RBTVZqM0dHLXc"); // replace with your sheet id var html = spreadsheet.getRange("A1").getValue(); // My html is in cell A1 return HtmlService