Iwark

Results 12 comments of Iwark

I guess we need to implement [UpdateCellsRequest](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#UpdateCellsRequest) method based on [the Sheets API](https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request#UpdateCellsRequest) to achieve that. If you can tackle to it, it would be very helpful! (The other methods...

I met the same problem, and here is my workaround: ``` sanitizeHtml(text, {disallowedTagsMode: 'escape'}).replace(/<\/.*?>/g, '') ``` It's ugly but works for my case.