diff options
author | Cem Keylan <cem@ckyln.com> | 2021-03-04 07:40:36 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-03-04 07:40:36 +0300 |
commit | f7db9b765d6123e71f220238b0e2a65d02ef27de (patch) | |
tree | f916dc8b484f1ebc67b38bd444a5370981dc9507 | |
parent | 1c2da975cff3310c14d93c804576dd5d43d4838c (diff) | |
download | website-f7db9b765d6123e71f220238b0e2a65d02ef27de.tar.gz |
properly-exclude latest-blog.org
-rwxr-xr-x | org-publish.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/org-publish.el b/org-publish.el index 85a2bd1..559a733 100755 --- a/org-publish.el +++ b/org-publish.el @@ -294,7 +294,7 @@ PROJECT is the current project." :html-preamble-format (carbs--pre/postamble-format 'preamble) :html-postamble-format (carbs--pre/postamble-format 'postamble) :html-link-org-files-as-html t - :exclude (regexp-opt '("rss.org" "index.org")) + :exclude (regexp-opt '("rss.org" "index.org" "latest-blog.org")) :auto-sitemap t :sitemap-filename "index.org" :sitemap-style 'list @@ -310,13 +310,13 @@ PROJECT is the current project." :html-postamble t :html-preamble-format (carbs--pre/postamble-format 'preamble) :html-postamble-format (carbs--pre/postamble-format 'postamble) - :exclude (regexp-opt '("rss.org" "index.org")) + :exclude (regexp-opt '("rss.org" "index.org" "latest-blog.org")) :html-link-org-files-as-html t) (list "blog-generate-rss-sitemap" :base-extension "org" :base-directory carbs--blog-directory :html-link-home "https://carbslinux.org/blog" - :exclude (regexp-opt '("rss.org" "index.org")) + :exclude (regexp-opt '("rss.org" "index.org" "latest-blog.org")) :publishing-function 'ignore :publishing-directory (expand-file-name "blog/" carbs--publish-directory) :rss-extension "xml" @@ -344,12 +344,12 @@ PROJECT is the current project." :publishing-directory carbs--publish-directory :publishing-function 'org-ascii-publish-to-ascii :base-extension "org" - :exclude (regexp-opt '("rss.org")) + :exclude (regexp-opt '("rss.org" "latest-blog.org")) :recursive t) (list "blog-txt" :base-directory carbs--blog-directory :base-extension "org" - :exclude (regexp-opt '("rss.org")) + :exclude (regexp-opt '("rss.org" "latest-blog.org")) :publishing-directory (expand-file-name "blog/" carbs--publish-directory) :publishing-function 'org-ascii-publish-to-ascii))) |