tanaike

The Thinker

Workaround: Exporting Google Documents as HTML with Image Hyperlinks

Gists This is a sample script for exporting Google Documents as HTML with the image hyperlinks using Google Apps Script. Recently, it seems that the specification for exporting Google Documents as HTML data has been changed. When a Google Document are exported as HTML data before, the images in the Google Document were the image hyperlinks, which are publicly shared. But, in the current stage, when a Google Document is exported as HTML data, the images in the Google Document are the data URL (base64 data) of the images.

Retrieving Release Notes of Google Apps Script and Google APIs from RSS using Google Apps Script

Gists This is a sample script for retrieving the release notes of Google Apps Script and Google APIs from RSS using Google Apps Script. Recently, the release notes of Google Apps Script and Google APIs have been published as RSS. By this, the data got to be able to be easily retrieved using XmlService of Google Apps Script. Knowing the latest release notes will be useful for developing the applications. So, I would like to introduce the sample script for retrieving this information.

Inserting Paragraphs with Checkboxes in Google Documents using Google Apps Script

Gists This is a sample script for inserting the paragraphs with the checkboxes in Google Documents using Google Apps Script. In the current stage, Google Documents can create paragraphs with checkboxes as the paragraph bullet. But, unfortunately, this cannot be created by the Google Document service (DocumentApp). Fortunately, it seems that this got to be able to be achieved by Google Docs API. In this post, I would like to introduce a sample script for this.

Workaround: Starting Animation GIF on Google Slide by Clicking

Gists Introduction This is a simple workaround for starting an animation GIF on Google Slide by clicking. When an animation GIF is inserted into a slide of Google Slides, the animation is automatically started. By this, the timing for starting cannot be controlled by the user side. In this post, I would like to introduce a workaround for resolving this issue. Preparation The sample flow is as follows. Prepare a sample animation GIF.

GAS Library - TemplateApp

Overview This is a Google Apps Script library for easily managing the template of Google Documents and Google Slides using Google Spreadsheet as a database using Google Apps Script. Description You might have situations where are required to create multiple Google Documents and Google Slides from the templates using Google Spreadsheet as a database with Google Apps Script. When the simple texts are replaced with the placeholders on the templates, this can be achieved by a simple script.