This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Articles</title> | |
</head> | |
<body> | |
<h3>Filter</h3> | |
<form method="get"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Deixar vazio, preencher caso deseje testar uma nota | |
const CHAVE_FORCADA = "" | |
// Para substituir múltiplos espaços | |
const MULTI_ESPACOS_REGEX = /\s{2,}/g; | |
// Para substituir um espaço | |
const UNI_ESPACO_REGEX = /\s{1}/g; | |
/** Pela assinatura da função executa ao abrir a planilha. */ | |
function onOpen() { | |
SpreadsheetApp.getUi() |
OlderNewer