aboutsummaryrefslogtreecommitdiff
path: root/scripts/atom.js
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2019-05-17 22:56:46 -0300
committerEuAndreh <eu@euandre.org>2019-05-17 22:59:15 -0300
commit480f3d0dd591d75a1f9af8980adbaf9f594c634f (patch)
treef52172fece1246f5d8a3d716c74647ed331bcddc /scripts/atom.js
parentRemove Guix compatibility code. (diff)
downloaddotfiles-480f3d0dd591d75a1f9af8980adbaf9f594c634f.tar.gz
dotfiles-480f3d0dd591d75a1f9af8980adbaf9f594c634f.tar.xz
Remove buku configuration.
Diffstat (limited to '')
-rw-r--r--scripts/atom.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/scripts/atom.js b/scripts/atom.js
deleted file mode 100644
index 878df05..0000000
--- a/scripts/atom.js
+++ /dev/null
@@ -1,22 +0,0 @@
-const RSS = require('rss');
-
-const feedName = process.argv[2];
-const feedSrc = process.argv[3];
-
-const feed = new RSS({
- title: `Buku feed tag for '${feedName}'.`,
- description: `Buku feed tag for ${feedName}`,
-});
-
-const items = require(feedSrc);
-items.forEach(({ title, description, uri }) => {
- feed.item({
- title,
- description,
- url: uri
- });
-});
-
-const xml = feed.xml({indent: true});
-
-console.log(xml);