Re: [PATCH] lisp/ox-html.el: Add file level option to manage headlines self link

2025-04-28 Thread Ihor Radchenko
Sébastien Gendre writes: > In the file `etc/ORG-NEWS': > > - Do I create a new entry for each KEYWORD/OPTION I have added, like I have > done with `html-self-link-headlines' on my previous patch ? > > - Or do I rewrite the entry about `html-self-link-headlines' to make it > talk about each KE

Re: [PATCH] lisp/ox-html.el: Add file level option to manage headlines self link

2025-04-28 Thread Sébastien Gendre
Thank you for your reply. In the file `etc/ORG-NEWS': - Do I create a new entry for each KEYWORD/OPTION I have added, like I have done with `html-self-link-headlines' on my previous patch ? - Or do I rewrite the entry about `html-self-link-headlines' to make it talk about each KEYWORD/OPTION

Re: [PATCH] Re: Q: org-export-headline-levels doc problem?

2025-04-28 Thread Ihor Radchenko
David Masterson writes: >>> #+begin_example >>> -,* Top level headline >>> +,* Top (or first) level headline >> >> IMHO, this sounds like "top" and "first" are two different things. Maybe >> it is my non-native English. > > In keeping with the rest of the example, how about: > > * First (AKA top

Re: org-timestamp: Wrong week numbers

2025-04-28 Thread Ihor Radchenko
Ihor Radchenko writes: >> '(org-display-custom-times t) >> '(org-timestamp-custom-formats '("%Y-%m-%d (W%W)\12" . "%Y-%m-%d (W%W) >> %H:%M")) >> ... >> If you send "C-c ." >> And write down: W17, you get: - [2025-04-23 mi. (W16) 17:05] >> Which should be Week 17, instead of W16 > > ... > https:/

RE: [BUG] Warning (org-element): ‘org-element-at-point’ cannot be used in non-Org buffer # (org-agenda-mode) [9.7.11 (release_9.7.11 @ /Applications/Emacs.app/Contents/Resources/l

2025-04-28 Thread Ihor Radchenko
Ihor Radchenko writes: > In other words, I believe that nothing can be done on Org mode side. The > fix belongs to org-super-agenda. Fixed, on org-super-agenda side. Closing. -- Ihor Radchenko // yantar92, Org mode maintainer, Learn more about Org mode at . Support Org de

Re: [DISCUSSION] Contributing policy for WORG

2025-04-28 Thread Ihor Radchenko
Ihor Radchenko writes: > I tried to reword worg-about to give instructions for people familiar > with git *and also people not familiar with git*. See the attached > tentative patch. Applied, onto master. https://git.sr.ht/~bzg/worg/commit/cfa22537 -- Ihor Radchenko // yantar92, Org mode maint

Re: [PATCH] lisp/ox-html.el: Add file level option to manage headlines self link

2025-04-28 Thread Ihor Radchenko
Sébastien Gendre writes: > Do org-mode have a rule to decide if we use a KEYWORD or an OPTION ? See https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=8824b3ce4df7201be081f64aa90d157e5cc805f2 -- Ihor Radchenko // yantar92, Org mode maintainer, Learn more about Org mode at

Re: [PATCH] lisp/ox-html.el: Add file level option to manage headlines self link

2025-04-28 Thread Sébastien Gendre
Ok, thank you. Do org-mode have a rule to decide if we use a KEYWORD or an OPTION ? signature.asc Description: PGP signature

Re: Question about getting properties of org entry

2025-04-28 Thread Ihor Radchenko
Doerthous writes: > + (let* ((loc (org-id--find-id-location id)) > + (file (if (consp loc) (car loc) loc)) > + (pos (if (consp loc) (cdr loc))) > + org-agenda-new-buffers where buf) > +;; When loc is a cons cell, check whether it's valid or not. > +(when (consp loc)

Re: [PATCH] Add option to disable mapping of linked org files to md during export to Markdown

2025-04-28 Thread Ihor Radchenko
ian martins writes: > Thanks for reviewing. I did a FSF copyright assignment a few years > ago. I see my name is still on the Org contributors list [1] so does > that mean it's still active? Yeah, you are still on the list. I just missed your record last time when I checked on the FSF servers.

Re: bug#78037: 30.1; Insert link when using org-yank regardless if file already exists

2025-04-28 Thread Ihor Radchenko
Visuwesh writes: >> Visuwesh, could you take a look? > > I have multiple deadlines to meet. Once I'm relatively free, I can take > a closer look at this. Sure. There is no rush. > PS should we move this to the Org ML? Right. Done. > [ஞாயிறு ஏப்ரல் 27, 2025] Ihor Radchenko wrote: > >> Thomas

Re: Join the Org Mode project as the Worg maintainer

2025-04-28 Thread Bastien Guerry
jman writes: > Besides the TODO available at https://orgmode.org/worg/todo.html (This list might be outdated.) > is there an issue tracker (or similar) where people can find tickets > or more specific tasks? The Worg maintainer(s) may rely on the org mailing list and the default tracker at htt

Re: Join the Org Mode project as the Worg maintainer

2025-04-28 Thread jman
Bastien Guerry writes: Worg is a Git repository consisting of .org files: https://git.sr.ht/~bzg/worg. Worg files are exported as HTML and published to orgmode.org: https://orgmode.org/worg Taking care of Worg would help the Org community tremendously! Besides the TODO available at https://

Re: Question about getting properties of org entry

2025-04-28 Thread Doerthous
Ihor Radchenko writes: > What if FILE is correct, but the file has been edited and the heading > with ID is now at a different place in that file? It would be more > efficient to try searching via `org-id-find-id-in-file' rather than > falling back to full scan in `org-id-update-id-locations'. I