Skip to content

Instantly share code, notes, and snippets.

View efremfilho's full-sized avatar
🏠
Working from home

Éfrem Maranhão Filho efremfilho

🏠
Working from home
View GitHub Profile
@efremfilho
efremfilho / sheet2atom.gs
Created January 13, 2018 16:21 — forked from aarroyoc/sheet2atom.gs
Google Spreadsheet to RSS ATOM - Google Apps Script
function doGet(e) {
var rss='<?xml version="1.0" encoding="utf-8"?>';
rss+='<feed xmlns="http://www.w3.org/2005/Atom">';
rss+='<title>Frases y citas célebres - NexCono </title>';
rss+='<link href="http://nexcono.appspot.com"/>';
rss+='<author><name>NexCono</name></author>';
rss+='<id></id>';
var app=SpreadsheetApp.openById("1tLSL5BqnTAM6VsgyF355DJJe50r0ZQbfunTXAUFj_nE");
var data=app.getDataRange().getValues();