From: Justin Gordon <justin.gordon@gmail.com>
To: emacs-orgmode@gnu.org, Yoshinari Nomura <nom@quickhack.net>
Subject: Advice on cleaning (DRYing) up my publishing list
Date: Thu, 2 Jan 2014 23:48:28 -1000 [thread overview]
Message-ID: <CAK1wbkE7j1j6Ex5FVAGZqr-eRrNvofRVLM0EUkVFNgWk1=81ZA@mail.gmail.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 6507 bytes --]
Lisp gurus, here is my feeble attempt at DRYing out my
org-publish-project-alist.
I'm setting up an octopress publishing system for several blogs, so my list
might grow and I'd like to avoid duplication
* Please advise on how I may make this cleaner and clearer. Original is at
bottom.
* And is there a better way than using the publishing settings for things
like with-toc?
* Does recursive still work for 8.2?
* Would this be better done with some sort of macros?
Thanks so much in advance!
(setq my-common-octopress-settings
'(:base-extension "org"
:with-toc nil
:with-sub-superscript nil
:recursive t
:publishing-function org-jekyll-publish-to-html
:headline-levels 4
:body-only t))
(setq my-static-directories '("about" "meta" "tips"))
(setq my-base-directory "~/a/railsonmaui-octopress/source")
(defun my-create-octopress-static (prj base-directory)
(let* (
(base-dir (concat base-directory "/" prj))
(prj-list (append (list :base-directory base-dir
:publishing-directory
base-dir)
my-common-octopress-settings))
)
(cons prj prj-list)))
(setq my-var (mapcar '(lambda (prj)
(my-create-octopress-static prj my-base-directory))
my-static-directories))
(setq org-publish-project-alist
(list
;; blog articles
(cons "blog-org" (append '(:base-directory
"~/a/railsonmaui-octopress/source/org_posts/"
:base-extension "org"
:publishing-directory
"~/a/railsonmaui-octopress/source/_posts/")
my-common-octopress-settings))
(cons "blog-extra" '(:base-directory
"~/a/railsonmaui-octopress/source/org_posts/"
:publishing-directory
"~/a/railsonmaui-octopress/source/"
:base-extension
"css\\|pdf\\|png\\|jpg\\|gif\\|svg"
:publishing-function
org-publish-attachment
:recursive t
:author nil
))
(mapcar '(lambda (prj)
(my-create-octopress-static prj my-base-directory))
my-static-directories)
;; all together
(cons "blog" '(:components ("blog-org" "blog-extra about meta
tips")))
)
)
ORIGINAL
(setq org-publish-project-alist
'(
("blog-org" . (:base-directory "~/a/octopress/source/org_posts/"
:base-extension "org"
:publishing-directory
"~/a/octopress/source/_posts/"
:table-of-contents nil
:sub-superscript nil
:recursive t
:publishing-function
org-publish-org-to-octopress
:headline-levels 4
:html-extension "markdown"
:octopress-extension "markdown"
:body-only t))
("blog-extra" . (:base-directory "~/a/octopress/source/org_posts/"
:publishing-directory
"~/a/octopress/source/"
:base-extension
"css\\|pdf\\|png\\|jpg\\|gif\\|svg"
:publishing-function
org-publish-attachment
:recursive t
:author nil
))
("about" . (:base-directory "~/a/octopress/source/about/"
:base-extension "org"
:publishing-directory
"~/a/octopress/source/about/"
:sub-superscript nil
:table-of-contents nil
:recursive t
:publishing-function
org-publish-org-to-octopress
:headline-levels 4
:html-extension "markdown"
:octopress-extension "markdown"
:body-only t))
("meta" . (:base-directory "~/a/octopress/source/meta/"
:base-extension "org"
:publishing-directory
"~/a/octopress/source/meta/"
:sub-superscript nil
:table-of-contents nil
:recursive t
:publishing-function
org-publish-org-to-octopress
:headline-levels 4
:html-extension "markdown"
:octopress-extension "markdown"
:body-only t))
("tips" . (:base-directory "~/a/octopress/source/tips/"
:base-extension "org"
:publishing-directory
"~/a/octopress/source/tips/"
:sub-superscript nil
:table-of-contents nil
:recursive t
:publishing-function
org-publish-org-to-octopress
:headline-levels 4
:html-extension "markdown"
:octopress-extension "markdown"
:body-only t))
("blog" . (:components ("blog-org" "blog-extra about")))
))
--
Justin Gordon | 808-877-6461 | m: 808-281-7272
www.railsonmaui.com | twitter: @railsonmaui<https://twitter.com/railsonmaui>
| sugarranchmaui.com <http://www.sugarranchmaui.com/> | Sugar Ranch
Blog<https://www.facebook.com/SugarRanch>
[-- Attachment #2: Type: text/html, Size: 9279 bytes --]
next reply other threads:[~2014-01-03 9:48 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-03 9:48 Justin Gordon [this message]
2014-01-03 21:37 ` Advice on cleaning (DRYing) up my publishing list Nick Dokos
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAK1wbkE7j1j6Ex5FVAGZqr-eRrNvofRVLM0EUkVFNgWk1=81ZA@mail.gmail.com' \
--to=justin.gordon@gmail.com \
--cc=emacs-orgmode@gnu.org \
--cc=nom@quickhack.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).