insert file contents
This commit is contained in:
parent
0cf864aa7e
commit
9d72db848b
1 changed files with 5 additions and 1 deletions
|
@ -33,6 +33,10 @@
|
|||
"#+TITLE: " title "\n\n"
|
||||
(org-list-to-subtree list)))
|
||||
|
||||
(defun get-file-contents (filename)
|
||||
(with-temp-buffer
|
||||
(insert-file-contents filename)
|
||||
(buffer-string)))
|
||||
|
||||
(defun format-posts-rss-feed-entry (entry _style project)
|
||||
(let* (
|
||||
|
@ -51,7 +55,7 @@
|
|||
title
|
||||
link
|
||||
pubdate
|
||||
file)))
|
||||
(get-file-contents file))))
|
||||
|
||||
(defun publish-posts-rss-feed (plist filename dir)
|
||||
(if (equal "rss.org" (file-name-nondirectory filename))
|
||||
|
|
Loading…
Add table
Reference in a new issue