Re: [O] org-mode for knowledge management

2014-10-10 Thread mbork
On Fri, 10 Oct 2014 22:46:58 +0700, Daniel Clemente wrote: > 1. Every information should have a single location, not two. Mix sections > fast if you detect repetitions. Use links extensively (C-c l) to connect > one header with another, specially after you get lost once. Don't bother > too much a

Re: [TASK] Please help updating blog generator list on https://orgmode.org/tools.html

2024-01-11 Thread mbork
On 2024-01-11, at 14:08, Bruno Cardoso wrote: > - https://gitlab.com/mbork_mbork_pl/org-clive :: a simple and minimalistic > Org-based static weblog generator Wow, thanks for mentioning my little package! If anything more is needed (longer description, examples etc.), just drop me a line. B

Re: Examples of online documentation written with Org-mode

2024-08-10 Thread mbork
On 2024-08-10, at 17:13, Ihor Radchenko wrote: > Many blogs are also made with Org mode. Not sure if it qualifies for > documentation. If I may put a shameless plug here, one of my blogs (https://crimsonelevendelightpetrichor.net, not terribly active ATM) is written entirely in Org. The whole c

What is the difference between :raw-value and :title?

2024-09-12 Thread mbork
Hi all, I am reading the Org element API docs and I don't understand the difference between :raw-value of a headline and its :title. I performed a few experiments with putting various things in the headline (timestamps, links, markup) to find a case where these two differ, but I could not. The :

Setting buffer-level properties in code

2024-10-10 Thread mbork
Hi fellow Orgers, I know that I can say #+PROPERTY: name value somewhere in the buffer to set the property `name' to `value' for every entry (assuming I use inheritance, like in `(org-entry-get (point) "name" t)`). However, what I need is to programmatically insert or change that line to set or

How to treat events (headlines) without a title?

2024-09-20 Thread mbork
Hi fellow Orgers, I have a bunch of entries in my agenda that don't have /titles/. I enrolled in a school which has classes on Saturdays, usually every two weeks, but this is not very rigid. So I need a separate headline per Saturday: ** School on Super Important Stuff <2024-10-05 Sat 09:3

Re: [ANN] Ihor is now officially the new Org maintainer

2024-12-07 Thread mbork
On 2024-12-07, at 09:19, Bastien wrote: > I have had a truly wonderful time as a maintainer and I'd like to > thank Carsten again for shaping and sharing Org in the first place. Congratulations to all of you, Carsten, Bastien and Ihor! Like others said - Org mode is /very/ important to me, I us

Re: Announcing org-publish-rss.el

2025-03-22 Thread mbork
On 2025-03-21, at 23:29, Thomas Ingram wrote: > Please let me know if you have any thoughts or suggestions, thanks! Interesting. I don't use org-publish, but I also created an extremely simple RSS generator in my minimalistic Org-Clive blogging engine: https://gitlab.com/mbork_mbork_pl/org-cli

How to visually distinguish headlines using colors

2025-05-27 Thread mbork
Hi all, I'd like to be able to set the background of a headline to various colors depending on a tag or (maybe better) a property. For instance, if the property :color: has value `red', I'd like the headline (alternatively, the whole subtree) to have a reddish background, etc. (The list of these

Re: I need to get the positions where the title starts and ends

2025-07-13 Thread mbork
On 2025-07-12, at 18:59, Ihor Radchenko wrote: > mb...@mbork.pl writes: > >> with the point on a headline, I'd like to be able to get the positions >> of the start and end of the current headline's title. How to do that? >> Here's what I have, is there a better way? >> >> (This includes tags; I'

Re: I need to get the positions where the title starts and ends

2025-07-13 Thread mbork
On 2025-07-13, at 08:20, Ihor Radchenko wrote: > mb...@mbork.pl writes: > >>> Try `org-complex-heading-regexp'. >> >> Thanks, this would probably work - I could match it and then get the >> positions. Is it "better" than my approach? I mean, are there any >> obvious pros and cons of both? > > `

Re: I need to get the positions where the title starts and ends

2025-07-02 Thread mbork
On 2025-07-02, at 20:40, pinmacs wrote: > On 2025-07-02 05:28, mb...@mbork.pl wrote: >> Hi all, >> >> with the point on a headline, I'd like to be able to get the positions >> of the start and end of the current headline's title. How to do that? >> Here's what I have, is there a better way? > >

Re: I need to get the positions where the title starts and ends

2025-07-06 Thread mbork
On 2025-07-02, at 21:53, pinmacs wrote: > On 2025-07-02 21:34, mb...@mbork.pl wrote: > > On 2025-07-02, at 20:40, pinmacs wrote: > > On 2025-07-02 05:28, mb...@mbork.pl wrote: > > Hi all, > > with the point on a headline, I'd like to be able to get the positions > of the start and end of the

Re: org-clock-sync-timer: sync org-timer with org-clock

2025-06-29 Thread mbork
On 2025-06-29, at 21:49, pinmacs wrote: > Use case 1: I usually try to work on my tasks with a timestamps saying > [...] > Use case 2: when a meeting everyone agreed to have a recording, and > [...] > Use case 3: you are trying to solve an IT incident, and you want to > [...] Thanks for writing

I need to get the positions where the title starts and ends

2025-07-01 Thread mbork
Hi all, with the point on a headline, I'd like to be able to get the positions of the start and end of the current headline's title. How to do that? Here's what I have, is there a better way? (This includes tags; I'm fine with that, though excluding them might be better.) --8<---cut