Apps script for docs to check if the paragraph ends with a question mark if it does convert it to an h3

To create a Google Apps Script that checks if a paragraph in a Google Document ends with a question mark and if so, converts it to a heading 3, follow these steps: This script will iterate through all paragraphs in your document, check if they end with a question mark, and if they do, the … Read more

Apps script to select h3 paragraphs in docs that start with a number and convert them to bolded text

To create a Google Apps Script that selects H3 paragraphs in a Google Document which start with a number and then converts them to bold text, you can use the following script: To use this script, follow these steps: This script will scan through all the paragraphs in your document, and if it finds any … Read more

Streamline Your Email Outreach with Google Sheets and Apps Script

In today’s fast-paced digital world, effective communication is key to success. Whether you’re a business owner, marketer, or freelancer, reaching out to contacts via email is a common task. However, crafting personalized emails for each recipient can be time-consuming and laborious. But fear not! In this post, I’ll introduce you to a simple yet powerful … Read more

Apps script to add a blank line directly above any paragraph that is bold

You can achieve this by iterating through all paragraphs, checking if they contain bold text, and if so, inserting a blank paragraph directly above them. Here’s the script: This script iterates through all paragraphs in the document. If a paragraph contains bold text, it inserts a blank paragraph directly above it. To use this script: … Read more

Apps script to add blank paragraph above all paragraphs that end with a question mark

You can achieve this by iterating through all paragraphs, checking if they end with a question mark, and if so, inserting a blank paragraph above them. Here’s the script: This script iterates through all paragraphs in the document. If a paragraph ends with a question mark, it inserts a blank paragraph above it. To use … Read more

Apps script to select all h3 paragraphs convert them to regular paragraphs with bolded text

Below is a Google Apps Script that selects all H3 paragraphs in a Google Document, converts them to regular paragraphs, and makes the text within them bold: Here’s how it works: To use this script: This will convert all H3 paragraphs to regular paragraphs with bolded text.

Clear left indent back to default for all page elements apps script for docs

To clear the left indentation back to default for all page elements (including paragraphs, lists, etc.) in a Google Doc using Apps Script, you can adjust the indentation attributes accordingly. Here’s a script to accomplish this: This script iterates through all paragraphs and lists in the document, setting their left indentation attributes to 0, effectively … Read more

Remove indentation in paragraphs in a Google Doc using Apps Script

To remove indentation in paragraphs in a Google Doc using Apps Script, you can modify the paragraph attributes. Here’s a script to remove indentation from all paragraphs in the document: This script iterates through all paragraphs in the document and sets both the first line and start indentation to 0, effectively removing any indentation from … Read more

Update normal text style in Google Docs with Apps Script

To create a Google Apps Script that updates all paragraphs styled as “Normal text” in a Google Doc to have a font size of 11 and not be bold, follow these instructions. This script will go through your Google Doc and apply these formatting changes to all paragraphs that are designated as “Normal text.” This … Read more

Update H3 paragraphs in Docs to normal text

To create a Google Apps Script that changes paragraphs styled as Heading 3 (H3) to regular paragraphs in a Google Doc, unless they end with a question mark (in which case they are left as H3), you can follow these steps. This script uses Google Apps Script, a Javascript-based platform that lets you extend Google … Read more