Justin Gordon <justin.gor...@gmail.com> writes: > 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? >
Yes, instead of constructing list structure on the fly as you do below (cons, append, list, etc.), check out ``Backquote'': (info "(elisp) Backquote") -- Nick