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> | |
<head> | |
<title>Parent Document</title> | |
<script> | |
/** | |
* @link https://dev.to/admitkard/google-docs-url-tricks-and-tips-4d44 | |
* @link https://web.archive.org/web/20240523160018/https://dev.to/admitkard/google-docs-url-tricks-and-tips-4d44 | |
*/ |
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
function onOpen() { | |
const ui = SpreadsheetApp.getUi(); | |
ui.createMenu("Exportar SQL") | |
.addItem("Exportar como PostgreSQL", "exportSheetToPostgresSQL") | |
.addToUi(); | |
} | |
function slugify(text) { | |
return text | |
.toString() |
OlderNewer