Я использую этот код в Google Docs
var body = DocumentApp.getActiveDocument().getBody();
var foundElement = body.findText(": ");
while (foundElement != null) {
// Get the text object from the element
var foundText = foundElement.getElement().asText();
// Where in the Element is the found text?
var start = foundElement.getStartOffset();
var end = foundElement.getEndOffsetInclusive();
// Change the background color to yellow
foundText.setBackgroundColor('#42e2f4');
// Find the next match
foundElement = body.findText(": ", foundElement);
}
Чтобы найти все ":" и подчеркнуть их. Но сценарий подчеркивает всю строку. Зачем? Это из-за того, что ":" не совсем "текст"? Если так, как я могу это сделать?