Re: [PATCH] Fix for cache error when using org-publish-find-(title|date)

2025-05-02 Thread Thomas Ingram
che'. I agree including the project-name is more robust in case this code gets refactored. I've updated the patch. Thanks, -- Thomas Ingram https://taingram.org/ >From 074dbbe67a23564c26b878592c592701bf3e2dc7 Mon Sep 17 00:00:00 2001 From: Thomas Ingram Date: Wed, 23 Apr 2025 17:59:53

Re: [PATCH] Fix for cache error when using org-publish-find-(title|date)

2025-04-27 Thread Thomas Ingram
ered adding PROJECT to the `org-publish-cache-set-file-property' call in `org-publish-find-title.'/`org-publish-find-date'. However, since `org-publish-cache-get-file-property' is always called first that should initialized the cache. Thanks, -- Thomas Ingram https://taingram.org

[PATCH] Fix for cache error when using org-publish-find-(title|date)

2025-04-23 Thread Thomas Ingram
nt-cache nil) (project-alist '("test-project" :base-directory "/tmp/test-project/" :base-extension "org"))) (org-publish-find-date "/tmp/test-project/file.org" project-alist)) #+end_src -- Thomas Ingram http

Re: ox-publish: remove all :base-extension from output file name?

2025-04-17 Thread Thomas Ingram
. -- Thomas Ingram https://taingram.org/

Announcing org-publish-rss.el

2025-03-21 Thread Thomas Ingram
ate functions, but it goes away if you run it immediate after publishing. I'm still an elisp novice, but it has been working well enough I can use the package for my own website. Please let me know if you have any thoughts or suggestions, thanks! -- Thomas Ingram https://taingram.org/

Re: Question regarding org-publish-find-title cache

2025-02-20 Thread Thomas Ingram
Thank you for the clarification Ihor. I willl try to dig into the cache logic to better understand this. > The API in this area is not ideal, unfortunately. Since the caching requirement is not noted in the docstring, would you be interested in a patch to allow these functions to work regardle

Question regarding org-publish-find-title cache

2025-02-19 Thread Thomas Ingram
ory (file-name-sans-extension file)   (org-publish-cache-set-file-property file :title title) Thanks, Thomas Ingram https://taingram.org

Prevent files with excluded FILETAGS from being exported

2022-12-07 Thread Thomas Ingram
ublish-project-alist' settings. Please let me know your thoughts. I would be happy to try to submit a patch but I would need some pointers on where in the export process this change should be added. Thanks, -- Thomas Ingram https://taingram.org

Re: Export org to just body HTML

2021-12-28 Thread Thomas Ingram
Kyle Meyer writes: > Have you tried selecting "Body only" when exporting to an HTML buffer? > With the default bindings, that'd be 'C-c C-e C-b h H'. This is close to what I want, but I lose the title etc.. Ideally I'd like to keep all information usually printed in the HTML body. Thanks!

Export org to just body HTML

2021-12-28 Thread Thomas Ingram
inserting HTML into existing documents or for text boxes that support HTML formatting. Any help is appreciated, thank you. -- Thomas Ingram

Re: [O] Org publish inserting HTML tags into sitemap-format-entry

2019-07-12 Thread Thomas Ingram
; . "@@html:$1@@"))) ` The only(?) problem is that I get a line return between the title and the date in the sitemap. I wonder if this can be fixed, maybe by passing extra options to `org-list-to-generic'. This may be a starting point. On 2019-07-10T20:30:42-0400,

Re: [O] Org publish inserting HTML tags into sitemap-format-entry

2019-07-10 Thread Thomas Ingram
>Test#+endexport On 7/10/19 7:47 PM, Thibault Marin wrote: You may need to wrap the html part in a `#+begin_export html' block or similar. I believe the custom sitemap function should generate org content, not directly HTML. Hope it helps. On 2019-07-10T17:44:01-0400, Thomas Ingram

[O] Org publish inserting HTML tags into sitemap-format-entry

2019-07-10 Thread Thomas Ingram
mat-time-string "%Y-%m-%d"                   (org-publish-find-date entry project))   entry   filename Thanks for the help! Thomas Ingram