From: Tim Visher <tim.visher@gmail.com>
To: Emacs Org Mode mailing list <emacs-orgmode@gnu.org>
Subject: Re: Automatically use Heading Content as EXPORT_FILE_NAME?
Date: Tue, 26 Apr 2022 12:24:48 -0400 [thread overview]
Message-ID: <CAHa53uzr+qOZETL0gk1Mu+LO6fufHyKbsjOZpwacrgkFy9CFbA@mail.gmail.com> (raw)
In-Reply-To: <CAHa53uxg4CmtdoTkPCg+bNW9dZ9aNUVsd9+jy5h85H=v5Q051g@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 676 bytes --]
On Tue, Apr 26, 2022 at 11:54 AM Tim Visher <tim.visher@gmail.com> wrote:
> I'm currently going to hack around it I think by simply making a function
> that updates the EXPORT_FILE_NAME property with the current heading text.
>
That's something like
```
(defun timvisher-org-set-export_file_name-property-to-heading-text
()
(interactive)
(org-set-property
"EXPORT_FILE_NAME"
(let ((stripped-heading
(replace-regexp-in-string
"[^-A-Za-z0-9_.~#+ ]"
""
(substring-no-properties (org-get-heading t t t t)))))
(substring-no-properties
stripped-heading
0
(min (length stripped-heading) 250)))))
```
[-- Attachment #2: Type: text/html, Size: 1252 bytes --]
next prev parent reply other threads:[~2022-04-26 16:26 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-26 15:54 Automatically use Heading Content as EXPORT_FILE_NAME? Tim Visher
2022-04-26 16:24 ` Tim Visher [this message]
2022-04-27 2:27 ` Samuel Wales
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=CAHa53uzr+qOZETL0gk1Mu+LO6fufHyKbsjOZpwacrgkFy9CFbA@mail.gmail.com \
--to=tim.visher@gmail.com \
--cc=emacs-orgmode@gnu.org \
/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).