"title"=>"Convert Soft Breaks to Hard Breaks on Google Documents using Google Apps Script",
"summary"=>nil,
"content"=>"
Description
This script converts soft breaks to hard breaks in a Google Document using Google Apps Script.
Usage
Follow these steps:
1. Create a New Google Document
Create a new Google Document and open it. Go to “View” -> “Show non-printing characters” in the top menu to see line breaks in the document body (as shown in the image below).
2. Sample Script
Copy and paste the following script into the script editor of your Google Document.
Important: Before using this script, enable the Google Docs API in Advanced Google services. Ref
function myFunction() {
const doc = DocumentApp.getActiveDocument();
const requests = [
{ replaceAllText: { replaceText: "\\n", containsText: { text: "\\u000b" } } },
];
Docs.Documents.batchUpdate({ requests }, doc.getId());
}
- The script searches for soft breaks using \\u000b.
- It replaces them with \\n, which creates hard breaks.
Testing
Running the script on a sample document with soft breaks will convert them to hard breaks as follows.
Note
- The soft breaks can be searched with findText("\\\\v"). But, when replaceText("\\\\v", '\\n') is run, it seems that \\n is used as the soft breaks. I’m not sure whether this is the current specification or a bug. From this situation, I thought that Google Docs API might be able to be used. But, it seems that Google Docs API cannot search the soft breaks with \\v. So, I thought that \\u000b might be able to be used.
References
- Method: documents.batchUpdate
- ReplaceAllTextRequest
- Stack Overflow Thread: https://stackoverflow.com/q/78258654 (original script post)
Convert Soft Breaks to Hard Breaks on Google Documents using Google Apps Script was originally published in Google Cloud - Community on Medium, where people are continuing the conversation by highlighting and responding to this story.
","author"=>"Kanshi Tanaike",
"link"=>"https://medium.com/google-cloud/convert-soft-breaks-to-hard-breaks-on-google-documents-using-google-apps-script-4edfd7fef0c5?source=rss----e52cf94d98af---4",
"published_date"=>Wed, 03 Apr 2024 04:49:27.000000000 UTC +00:00,
"image_url"=>nil,
"feed_url"=>"https://medium.com/google-cloud/convert-soft-breaks-to-hard-breaks-on-google-documents-using-google-apps-script-4edfd7fef0c5?source=rss----e52cf94d98af---4",
"language"=>nil,
"active"=>true,
"ricc_source"=>"feedjira::v1",
"created_at"=>Wed, 03 Apr 2024 14:28:21.747570000 UTC +00:00,
"updated_at"=>Mon, 13 May 2024 19:02:18.090388000 UTC +00:00,
"newspaper"=>"Google Cloud - Medium",
"macro_region"=>"Blogs"}