Re: can emphasis emphasize this?

2023-11-12 Thread Marcin Borkowski
round > a bunch i know, and forgotten details. i suspect it is at your own > risk stuff now. My go-to solution is this: (defun insert-zero-width-space () "Insert Unicode character \"zero-width space\"." (interactive) (insert 8203)) Hth, -- Marcin Borkowski http://mbork.pl

Re: How to mark a in HTML export with a class?

2023-11-06 Thread Marcin Borkowski
On 2023-11-07, at 06:06, Marcin Borkowski wrote: > Hi all, > > I'd like to put some HTML class on my element, exported from an Org > mode list. Is that possible? Ok, found it - say #+ATTR_HTML: :class whatever right before it. Best, -- Marcin Borkowski http://mbork.pl

How to mark a in HTML export with a class?

2023-11-06 Thread Marcin Borkowski
Hi all, I'd like to put some HTML class on my element, exported from an Org mode list. Is that possible? TIA, -- Marcin Borkowski http://mbork.pl

Re: Is there a size limit to org files?

2023-09-08 Thread Marcin Borkowski
On 2023-09-08, at 19:37, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> It's a /very/ long shot, but I noticed that editing large tables (1000+ >> lines) can become pretty slow. Apart from that, I have Org files with >> tens of thousands lines and they work p

Re: Is there a size limit to org files?

2023-09-08 Thread Marcin Borkowski
tes. It's a /very/ long shot, but I noticed that editing large tables (1000+ lines) can become pretty slow. Apart from that, I have Org files with tens of thousands lines and they work pretty well. Best, -- Marcin Borkowski http://mbork.pl

Re: How to put a string produced by an Elisp form in an Org source block in the Org file?

2023-08-05 Thread Marcin Borkowski
On 2023-08-05, at 11:49, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> Thanks a lot, that works! (Apart from the issue with lines beginning >> with a star, possibly preceded by whitespace, which are "escaped" with >> a comma - but that is a kn

Re: How to put a string produced by an Elisp form in an Org source block in the Org file?

2023-08-05 Thread Marcin Borkowski
On 2023-08-04, at 22:20, Marcin Borkowski wrote: > On 2023-08-04, at 10:03, Ihor Radchenko wrote: > >> Marcin Borkowski writes: >> >>> I have an Elisp form in an Org source block, returning a (multi-line) >>> string. I'd like to put that strin

Re: How to put a string produced by an Elisp form in an Org source block in the Org file?

2023-08-04 Thread Marcin Borkowski
On 2023-08-04, at 10:03, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> I have an Elisp form in an Org source block, returning a (multi-line) >> string. I'd like to put that string into the same Org buffer. I tried >> `:results raw', but the string contain

How to put a string produced by an Elisp form in an Org source block in the Org file?

2023-08-04 Thread Marcin Borkowski
. How to do that? -- Marcin Borkowski http://mbork.pl

Re: How to get the contents of an Org subtree?

2023-07-25 Thread Marcin Borkowski
On 2023-07-25, at 07:19, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> I want to get the contents ("text") of a subtree. Without the heading, >> without the drawers - just the text. > > org-agenda-get-some-entry-text Thanks! This was far from obvi

How to get the contents of an Org subtree?

2023-07-24 Thread Marcin Borkowski
;---cut here---end--->8--- I need the string "This is the text.". How to do that? -- Marcin Borkowski http://mbork.pl

Org Clive, a new Org-mode-based blog engine

2023-07-22 Thread Marcin Borkowski
about it (https://mbork.pl/2023-07-22_Org_Clive_-_a_new_Org-mode-based_blogging_engine) or to Hacker News (https://news.ycombinator.com/item?id=36824652). Best, -- Marcin Borkowski http://mbork.pl

How to go to an Org headline programmatically?

2023-07-05 Thread Marcin Borkowski
a lot more - is there some simpler function to do that? TIA, -- Marcin Borkowski http://mbork.pl

Re: How to export to the simplest possible HTML?

2023-06-28 Thread Marcin Borkowski
gt; I do not need viewport information in the HTML. > > On 26/06/2023 02:56, Marcin Borkowski wrote: >> Do you mean this? >> https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag > > Yes, I do. Browser development tools allows to test adaptive design > (to sim

Re: How to export to the simplest possible HTML?

2023-06-25 Thread Marcin Borkowski
, viewport is missed on your site as well. Do you mean this? https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag I think the reason is that the site was designed (in terms of HTML and CSS) well over 15 years ago... Thanks, -- Marcin Borkowski http://mbork.pl

Re: time-warping - retroactively marking DONE?

2023-06-25 Thread Marcin Borkowski
e also here: https://mbork.pl/2019-08-05_datefudge_and_agenda_testing And, of course, `org-todo-yesterday'. Best, -- Marcin Borkowski http://mbork.pl

Re: How to export to the simplest possible HTML?

2023-06-24 Thread Marcin Borkowski
On 2023-06-24, at 15:34, Ihor Radchenko wrote: > Marcin Borkowski writes: > >>> Org export passes the actual parsed and filtered AST that will be >>> exported to `org-export-filter-parse-tree-functions'. You can modify and >>> traverse the parse tree a

Re: How to export to the simplest possible HTML?

2023-06-24 Thread Marcin Borkowski
On 2023-06-03, at 10:37, Ihor Radchenko wrote: > Marcin Borkowski writes: > >>> You can loop over links in the exported subtree and export any extra if >>> necessary. For example, in the `org-export-filter-parse-tree-functions'. >> >

Re: How to export to the simplest possible HTML?

2023-06-24 Thread Marcin Borkowski
rter and `org-export-as` with `body-only' set to `t' (and I wrap the generated HTML in tags like `' and `' myself then). Best, -- Marcin Borkowski http://mbork.pl

Re: How to tell `org-html-link' to create a link with some HTML class?

2023-06-21 Thread Marcin Borkowski
On 2023-06-20, at 18:30, Max Nikulin wrote: > On 20/06/2023 11:42, Marcin Borkowski wrote: >> as I mentioned some time ago, I'm writing a custom exporter >> (actually, >> a very thin wrapper around the HTML exporter). I'd like `org-html-link' >> to add some clas

Re: How to tell `org-html-link' to create a link with some HTML class?

2023-06-20 Thread Marcin Borkowski
On 2023-06-20, at 08:07, Jens Lechtenboerger wrote: > On 2023-06-20, Marcin Borkowski wrote: > >> Dear Orgers, >> >> as I mentioned some time ago, I'm writing a custom exporter (actually, >> a very thin wrapper around the HTML exporter). I'd like `org-h

How to tell `org-html-link' to create a link with some HTML class?

2023-06-19 Thread Marcin Borkowski
Dear Orgers, as I mentioned some time ago, I'm writing a custom exporter (actually, a very thin wrapper around the HTML exporter). I'd like `org-html-link' to add some class to the links it generates. Is that possible? TIA, -- Marcin Borkowski http://mbork.pl

How to add custom agenda entries?

2023-06-12 Thread Marcin Borkowski
setup a function which Org mode would run for every headline in my agenda files, and display the string returned from it. I don't think Org mode has that, but maybe there's some package which can do it? TIA, -- Marcin Borkowski http://mbork.pl

Re: Aquamacs question:how to display calendar mode

2023-06-05 Thread Marcin Borkowski
This looks like a custom binding, not one built into Emacs. Try C-h c C-c a a in your emacs and see what it tells you. Then you can say C-u 21 M-x , or bind that command to C-c a a or any other key you like. Hth, -- Marcin Borkowski http://mbork.pl

Re: How to export to the simplest possible HTML?

2023-06-03 Thread Marcin Borkowski
On 2023-06-03, at 07:08, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> On 2023-05-30, at 20:45, Marcin Borkowski wrote: >> >>>> Just use `org-export-as'. >>> >>> Thanks again, I didn't know about that function! >> >> I tri

Re: How to export to the simplest possible HTML?

2023-06-02 Thread Marcin Borkowski
On 2023-05-30, at 20:45, Marcin Borkowski wrote: >> Just use `org-export-as'. > > Thanks again, I didn't know about that function! I tried playing around with it, but it has one drawback - I can't use it to export a subtree containing a link to another subtree, and that is

Re: How to export to the simplest possible HTML?

2023-05-30 Thread Marcin Borkowski
On 2023-05-30, at 17:32, Max Nikulin wrote: > On 30/05/2023 10:47, Marcin Borkowski wrote: >> since I'm going to >> call my exporting function in a loop over many elements. I tried >> (org-export-with-backend 'html (org-element-at-point (point))) > >

Re: How to export to the simplest possible HTML?

2023-05-30 Thread Marcin Borkowski
On 2023-05-30, at 08:21, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> ... I tried this: >> >> (org-html-export-as-html nil nil nil t '(org-export-with-toc nil)) > > You need (org-html-export-as-html nil nil nil t '(:with-toc nil)) > See `org-ex

How to export to the simplest possible HTML?

2023-05-29 Thread Marcin Borkowski
formatting for italics & friends, so that This is /italic/. can become e.g. This is italic. I'm considering writing a custom (derived) export backend, but maybe that is an overkill? Any ideas? TIA, -- Marcin Borkowski http://mbork.pl

Re: An Org-mode-based blogging engine?

2023-05-20 Thread Marcin Borkowski
o. But it's not fully automated, and this time I'd like to have something much more automated. (Also, I don't want any DHTML - I just want to have a bunch of static files so that it's goin gto be really fast.) Best, -- Marcin Borkowski http://mbork.pl

Re: An Org-mode-based blogging engine?

2023-05-20 Thread Marcin Borkowski
On 2023-05-08, at 12:44, Dr. Arne Babenhauserheide wrote: > Marcin Borkowski writes: > >> I'm preparing to set up a new blog, and I'd like to have a fully >> Org-mode-based workflow. Ideally, I'd like to be able to do everything >> - including publishing the p

Re: An Org-mode-based blogging engine?

2023-05-20 Thread Marcin Borkowski
On 2023-05-08, at 12:36, Martin Steffen wrote: > Hi, >>>>>> "Marcin" == Marcin Borkowski writes: > > Marcin> fully Org-mode-based workflow. Ideally, I'd like to be able > Marcin> to do everything - including publishing the posts - from &

Re: An Org-mode-based blogging engine?

2023-05-20 Thread Marcin Borkowski
On 2023-05-08, at 10:30, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> 2. I want to publish a whole set of HTML files from a single Org mode >> file. I will need to preserve internal links (so that I can link to >> another headline and the result will be one

Re: How to filter a clock table by property value?

2023-05-15 Thread Marcin Borkowski
On 2023-05-08, at 17:30, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> #+BEGIN: clocktable :match "property=\"value\"" >> #+END > > "+property=\"value\"" > > I just tried #+BEGIN: clocktable :scope subtree :mat

How to filter a clock table by property value?

2023-05-08 Thread Marcin Borkowski
e? If so, how? TIA, -- Marcin Borkowski http://mbork.pl

An Org-mode-based blogging engine?

2023-05-08 Thread Marcin Borkowski
e) is not enough - I will need more than a dozen of those custom classes. Any thought, suggestions, recommendations? -- Marcin Borkowski http://mbork.pl

Re: What is a week?

2023-04-24 Thread Marcin Borkowski
On 2023-04-24, at 08:26, Ihor Radchenko wrote: > Marcin Borkowski writes: > >>> Patches welcome! >> >> Would gladly do. Has the copyright papers requirement been lifted? > > Of course not, but don't you already have copyright assignment done? > Our record

Re: What is a week?

2023-04-24 Thread Marcin Borkowski
On 2023-04-24, at 17:13, Max Nikulin wrote: > On 24/04/2023 02:06, Marcin Borkowski wrote: >> Fair enough. Still, I consider this a bug in the docs (they don't >> say >> clearly to set :wstart 7)... > > I do not think :wstart 7 gives expected result when run on

Re: What is a week?

2023-04-23 Thread Marcin Borkowski
On 2023-04-23, at 21:18, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> Fair enough. Still, I consider this a bug in the docs (they don't say >> clearly to set :wstart 7)... > > Patches welcome! Would gladly do. Has the copyright papers requirement been lifte

Re: What is a week?

2023-04-23 Thread Marcin Borkowski
On 2023-04-23, at 19:57, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> Now it's Monday. I create a clock table with :wstart 1 and thisweek - >> and my clock table starts today. >> >> What is the logic behind it? > > I saw you are considering

Re: [ANN] org-jami-bot

2023-04-17 Thread Marcin Borkowski
lf feels most natural, so that is > what I went with: triggering a capture via GNU Jami, the distributed > private messenger. Hi, I've never heard about Jami before -- I'll definitely check it out! And your package looks _very_ cool. Thanks! Best, -- Marcin Borkowski http://mbork.pl

Re: Can a post-capture hook know which capture template I used?

2023-04-14 Thread Marcin Borkowski
tes and change them or look up the docs. Still, looks nice! -- Marcin Borkowski http://mbork.pl

Can a post-capture hook know which capture template I used?

2023-04-11 Thread Marcin Borkowski
, -- Marcin Borkowski http://mbork.pl

Re: What is a week?

2023-04-11 Thread Marcin Borkowski
lay a clock table for the last week. In that case, you can always say `lastweek-1', so I'm not sure if the `0' setting is all that useful. Best, -- Marcin Borkowski http://mbork.pl

Re: What is a week?

2023-04-09 Thread Marcin Borkowski
On 2023-04-10, at 05:35, Marcin Borkowski wrote: > Hi fellow Orgers, > > I'm trying to wrap my head around the notion of the week, for the > purpose of using weekly clock tables. > > Assume it's Sunday. I create a clock table with :wstart 0 and > thisweek - and appa

What is a week?

2023-04-09 Thread Marcin Borkowski
with :wstart 1 and thisweek - and my clock table starts today. What is the logic behind it? Help! -- Marcin Borkowski http://mbork.pl

Re: [Q] How to italicize without introducing a space?

2023-03-29 Thread Marcin Borkowski
ve a command to do this: (defun insert-zero-width-space () "Insert Unicode character \"zero-width space\"." (interactive) (insert 8203)) Hth, -- Marcin Borkowski http://mbork.pl

Re: How to build an agenda view showing all entries whose headlines match a given regex?

2023-03-11 Thread Marcin Borkowski
On 2023-02-23, at 18:14, Marcin Borkowski wrote: > Hi all, > > the topic says it all. Is it possible? If so, how? So, I'm answering myself in case someone else also needs this. Yes, it is possible, and is now described here: https://mbork.pl/2023-03-11_Adding_my_TODOs_to_age

Re: Org-mode notes about school lessons

2023-02-25 Thread Marcin Borkowski
o each his own, but I also can't see much benefit of having many small files instead of a few larger ones. For example, linking to other sections might be easier this way. But, as Tory said, this is also about personal preference, so I'm not claiming here that my way is objectively better. Best, -- Marcin Borkowski http://mbork.pl

How to build an agenda view showing all entries whose headlines match a given regex?

2023-02-23 Thread Marcin Borkowski
Hi all, the topic says it all. Is it possible? If so, how? TIA, -- Marcin Borkowski http://mbork.pl

Re: New Org (from main) and slow clocking

2023-02-17 Thread Marcin Borkowski
On 2023-02-17, at 19:14, Ihor Radchenko wrote: > Marcin Borkowski writes: > >>> Another thing you can try is setting org-element--cache-self-verify to >>> nil. >> >> That did help indeed. Should I make it nil in my init.el? > > You can, as long as yo

Re: New Org (from main) and slow clocking

2023-02-17 Thread Marcin Borkowski
On 2023-02-17, at 14:32, Ihor Radchenko wrote: > Marcin Borkowski writes: > >>> Do you have org-element-use-cache set to nil? >> >> No, should I? > > You should not. But, when it is nil (not default), things will be slow > in your scenario. > > Anothe

Re: New Org (from main) and slow clocking

2023-02-17 Thread Marcin Borkowski
On 2023-02-17, at 13:02, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> I have just updated my Org (from the main branch, Org mode version >> 9.6.1, release_9.6.1-253-g74eb0f), and I noticed an issue with clocking. >> I have an "ongoing" task whi

Re: New Org (from main) and slow clocking

2023-02-16 Thread Marcin Borkowski
On 2023-02-17, at 07:51, Marcin Borkowski wrote: > Hi all, > > I have just updated my Org (from the main branch, Org mode version > 9.6.1, release_9.6.1-253-g74eb0f), and I noticed an issue with clocking. > I have an "ongoing" task which already accumulated 7000+ cloc

New Org (from main) and slow clocking

2023-02-16 Thread Marcin Borkowski
t, and maybe it's time to trade new/shiny for safe...) TIA, -- Marcin Borkowski http://mbork.pl

Re: Compact schedule in agenda day view

2023-02-15 Thread Marcin Borkowski
ckage by Wilfred Hughes (see https://github.com/Wilfred/helpful). Hth, -- Marcin Borkowski http://mbork.pl

Re: [POLL] Proposed syntax for timestamps with time zone info

2023-02-06 Thread Marcin Borkowski
T/CEST), >> some not (as above). The time zone database is only known for a >> limited time into future and may change with political >> vagaries. Yadda, yadda. > > Very right. > > At least the history is more certain than the future in regards to > time calculations with computer. -- Marcin Borkowski http://mbork.pl

Re: Feature request: "task table" (similar to clock table)

2023-01-25 Thread Marcin Borkowski
On 2023-01-25, at 03:37, Max Nikulin wrote: > On 25/01/2023 03:09, Marcin Borkowski wrote: >>>> https://mbork.pl/2023-01-09_TODO_stats_table > > Sorry for a too late response. The feature is documented in the > manual, see info "(org) Dynamic Blocks" &g

Re: Feature request: "task table" (similar to clock table)

2023-01-24 Thread Marcin Borkowski
On 2023-01-24, at 10:59, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> https://mbork.pl/2023-01-09_TODO_stats_table > > https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=7ad77965467602ced2cb8f3cded023882dc229a2 Thanks! -- Marcin Borkowski http://mbork.pl

Re: Feature request: "task table" (similar to clock table)

2023-01-23 Thread Marcin Borkowski
On 2023-01-03, at 19:29, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> I see. I think I'll go another route then - in fact, I already started, >> see https://mbork.pl/2023-01-02_Computing_Org_mode_TODO_stats :-) > > That will also work. > > But why `plis

One of my Org files hangs Emacs

2023-01-18 Thread Marcin Borkowski
Hi fellow Orgers, so I have a bunch of Org files, most of them pretty big (over 1 megabyte), and one of them repeatedly causes my Emacsa to hang. Sometimes a plain `C-g' helps, sometimes I need to kill the Emacs process. How do I even begin to find out what happens? Any hints? TIA, -- Marcin

Re: Feature request: "task table" (similar to clock table)

2023-01-03 Thread Marcin Borkowski
On 2023-01-03, at 19:29, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> I see. I think I'll go another route then - in fact, I already started, >> see https://mbork.pl/2023-01-02_Computing_Org_mode_TODO_stats :-) > > That will also work. > > But why `plis

Re: Feature request: "task table" (similar to clock table)

2023-01-03 Thread Marcin Borkowski
On 2022-12-27, at 08:48, Ihor Radchenko wrote: > Marcin Borkowski writes: > >>> If you have interest, going through org-colview.el code would be >>> helpful. It is a bit messy and deserves more cleaning and commenting. >> >> Since org-colview is pretty lon

Re: LaTeX tutorial (focused on what Org exports) ??

2022-12-31 Thread Marcin Borkowski
author of a (free as in beer, a bit less free as in speech - CC-BY-NC) textbook on LaTeX, but it will probably be of no use for you, since it's in Polish;-). Best, -- Marcin Borkowski http://mbork.pl

Re: [OT] org and diff

2022-12-27 Thread Marcin Borkowski
On 2022-12-28, at 03:30, Samuel Wales wrote: > hi marcin, > > thanks for your blog post on my crash-proof editing idea. You're welcome! :-) In fact, it was an interesting exercise. > > more below > > On 12/17/22, Marcin Borkowski wrote: >> >> On 2022-12-

Re: Feature request: "task table" (similar to clock table)

2022-12-26 Thread Marcin Borkowski
On 2022-12-26, at 09:26, Ihor Radchenko wrote: > Marcin Borkowski writes: > >>> https://orgmode.org/manual/Capturing-column-view.html >>> https://orgmode.org/manual/Column-attributes.html >> >> Good point, I forgot about those. But: is it possible fo

Re: Feature request: "task table" (similar to clock table)

2022-12-26 Thread Marcin Borkowski
On 2022-12-26, at 09:05, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> I've been using clock tables for some time now, and they are very >> useful. However, it has just occurred to me that I'd really appreciate >> another feature - a "task table".

Feature request: "task table" (similar to clock table)

2022-12-25 Thread Marcin Borkowski
hether I really want to, and whether my employer would be willing to let me.) TIA, -- Marcin Borkowski http://mbork.pl

Re: missing from the manual

2022-12-25 Thread Marcin Borkowski
ent from `org-forward-heading-same-level` and `org-backward-heading-same-level'? (Not irony etc., I'm genuinely curious.) Best, -- Marcin Borkowski http://mbork.pl

Re: [OT] org and diff

2022-12-17 Thread Marcin Borkowski
ed to > do merely one thing: try to preserve stuff between "^\\*+ ". that is > probably too optimistic, but imagine a --preserve-between option. I afraid so. Difftastic does not support Org mode format. However, the tree-sitter page claims that Org parser is under way, so there's hope (A

Re: Org and Multimedia..?

2022-11-30 Thread Marcin Borkowski
ation than something genuinely useful, but let me plug this: https://mbork.pl/2018-08-18_Embedding_files_in_Org-mode_revisited Best, -- Marcin Borkowski http://mbork.pl

Re: [OT] org and diff

2022-11-13 Thread Marcin Borkowski
stion I'd ask is: how important a legible diff is to you? I keep my Org files in Git, too, but if /I/ know what was changed, I just don't care about diff going nuts and I treat it as (more or less) Git's internal implementation detail. Just my 2cents (not too helpful, I'm afraid...) -- Marcin Borko

Re: Docstrings and literate programming (good practices?)

2022-11-04 Thread Marcin Borkowski
ith internal functions. If you order the former one carefully, the "extract docstrings" might actually work as a documentation. Still, a "normal" documentation seems a better (even if more time-consuming) options. Also, such docstring-based documentation is still better than none. Best, -- Marcin Borkowski http://mbork.pl

Re: Org mode, Org Mode, Org-mode or Org-Mode?

2022-10-29 Thread Marcin Borkowski
On 2022-10-28, at 23:50, Ihor Radchenko wrote: > Marcin Borkowski writes: > >> What is the "official" version? I found at least two spelling on >> orgmode.org... > > If we look into doc/Documentation_Standards.org: > > - Prefer "Org mode&

Org mode, Org Mode, Org-mode or Org-Mode?

2022-10-28 Thread Marcin Borkowski
What is the "official" version? I found at least two spelling on orgmode.org... TIA, -- Marcin Borkowski http://mbork.pl

Re: Interest in an Org video meetup?

2022-10-06 Thread Marcin Borkowski
On 2022-10-06, at 19:24, Russell Adams wrote: > On Thu, Oct 06, 2022 at 05:28:12PM +0200, Marcin Borkowski wrote: >> Me too, though it depends on the schedule. What time of day do you plan >> for that? > > From my original post: > >>> I'm offering to schedule

Re: Interest in an Org video meetup?

2022-10-06 Thread Marcin Borkowski
On 2022-10-06, at 16:40, Leslie Watter wrote: > Would be great to see what others are doing in their workflows using org ;-) > > I'd like to join to! Great idea! Me too, though it depends on the schedule. What time of day do you plan for that? Best, -- Marcin Borkowski http://mbork.pl

Re: Suggested Syntax for cancelled checkboxes: [-] as non-blocking dependency

2022-09-13 Thread Marcin Borkowski
On 2022-09-13, at 10:07, Karl Voit wrote: > Is it only me who is thinking that a non-blocking cancelled checkbox > state would be a good idea? No. -- Marcin Borkowski http://mbork.pl

Re: [tip/offtopic] A function to describe the characters of a word at point

2022-07-14 Thread Marcin Borkowski
> (view-mode) > (temp-buffer-window-show "*chars in word*" > '((display-buffer-below-selected > display-buffer-at-bottom) >(inhibit-same-window . t) >(window-height . > fit-window-to-buffer > (pop-to-buffer "*chars in word*") > #+end_src -- Marcin Borkowski http://mbork.pl

Re: how to convert a non-org list to org headings

2022-07-06 Thread Marcin Borkowski
p-Replace.html, https://www.masteringemacs.org/article/evaluating-lisp-forms-regular-expressions and http://mbork.pl/2013-09-18_Selective_replacement_in_LaTeX_documents_(en) . You could probably use keyboard macros, too - see e.g. http://mbork.pl/2021-02-20_Using_keyboard_macros_to_emulate_query_replace . Hth, -- Marcin Borkowski http://mbork.pl

[BUG] Error when editing properties in column view [9.5.3 (release_9.5.3-452-g407104 @ /home/mbork/others-works/emacs/org-mode/lisp/)]

2022-05-09 Thread Marcin Borkowski
Emacs 29.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.31, cairo version 1.17.4) of 2022-03-06 Package: Org mode version 9.5.3 (release_9.5.3-452-g407104 @ /home/mbork/others-works/emacs/org-mode/lisp/) -- Marcin Borkowski http://mbork.pl

Re: How to export to markdown programmatically without the table of contents?

2022-05-08 Thread Marcin Borkowski
On 2022-05-07, at 10:16, Max Nikulin wrote: > On 02/05/2022 23:52, Marcin Borkowski wrote: >> On 2022-05-01, at 22:01, Berry, Charles wrote: >>>> On May 1, 2022, at 2:20 AM, Marcin Borkowski wrote: >>>> >>>> I'd like to export a Org-mode formatted s

Re: How to export to markdown programmatically without the table of contents?

2022-05-02 Thread Marcin Borkowski
On 2022-05-01, at 22:01, Berry, Charles wrote: >> On May 1, 2022, at 2:20 AM, Marcin Borkowski wrote: >> >> Hi fellow Orgers, >> >> I'd like to export a Org-mode formatted string to markdown, but without >> the table of contents. >> >>

How to export to markdown programmatically without the table of contents?

2022-05-01 Thread Marcin Borkowski
Hi fellow Orgers, I'd like to export a Org-mode formatted string to markdown, but without the table of contents. (org-export-string-as my-string 'md t '(toc nil)) didn't work (the ToC was still there). What am I missing? TIA, -- Marcin Borkowski http://mbork.pl

Re: Read only org view mode

2022-01-23 Thread Marcin Borkowski
A mode derived from your mode could be great for that. Thanks a lot for working on this, -- Marcin Borkowski http://mbork.pl

Re: Question Regarding Creating Workflow For Automatic Formulas For Finance Based Org Spreadsheet

2022-01-10 Thread Marcin Borkowski
rstanding that - even if you don't end up using Ledger but some >> > other software, you might find learning about accounting useful. (Also, >> > it's fascinating. No, really! It's an extremely clever abstract >> > system with a real-life use-case.) >> >> i agree that learning the principles of double-entry is worthwhile, >> actually interesting, and of a very interesting history! >> -- Marcin Borkowski http://mbork.pl

Re: Question Regarding Creating Workflow For Automatic Formulas For Finance Based Org Spreadsheet

2022-01-09 Thread Marcin Borkowski
how they manage that.) Having said all that, would someone be interested in a blog post(s) with a Ledger basics crash course? Hth, -- Marcin Borkowski http://mbork.pl

Re: [tip] Inline tasks as anonymous sections

2022-01-08 Thread Marcin Borkowski
es, todo states, etc). > > If anyone wants to explore this possibility, I am attaching a test org > document. I have defined two LaTeX commands: \anonsectionbreak and > \anonsectionmark; and the 'anonsection' environment[1]. I don't expect this to be useful for me personally, but I love the idea! Best, -- Marcin Borkowski http://mbork.pl

Re: From macros to elisp programming?

2021-12-07 Thread Marcin Borkowski
lly a good idea. I learned a lot (and I'm still learning a lot) just by reading emails here. Other resources I'd mention are: - Emacs source code (though it is very complicated in some places...) - source code of various packages - Emacs blogs (https://planet.emacslife.com/) Best, -- Marcin Borkowski http://mbork.pl

Re: On zero width spaces and Org syntax

2021-12-04 Thread Marcin Borkowski
On 2021-12-04, at 08:22, Ihor Radchenko wrote: > Marcin Borkowski writes: >> 2. We modify Emacs itself to somehow highlight the ZWS. There is (kind >> of) a precedent – a no-breaking space is already fontified with >> =nobreak-space= face. At the very least, make wh

Re: On zero width spaces and Org syntax

2021-12-03 Thread Marcin Borkowski
ues where a ZWS is displayed as something with a positive width. OTOH, even now changing the face of a ZWS leads to a narrow (1-pixel wide) line of a different color. Is there a way to make it a bit stronger? Just some random ideas, -- Marcin Borkowski http://mbork.pl

Re: "Orgdown", the new name for the syntax of Org-mode

2021-11-29 Thread Marcin Borkowski
to try to market org(down) as a > markup for complex documents, with the added benefit that it does > incidentally also cover simple documents nicely on par with Markdown. I agree. When I type Markdown (and I often do, in a few places), I mainly use `backticks` (single and triple ones) for cod

Is it possible to add a "cumulative" column in column view?

2021-11-29 Thread Marcin Borkowski
cult would it be to extend it? (A cursory look at `org-colview.el' suggests that there are quite a few layers of abstraction, so it doesn't look like a 10-minute hack...) TIA, -- Marcin Borkowski http://mbork.pl

Re: "Orgdown", the new name for the syntax of Org-mode

2021-11-29 Thread Marcin Borkowski
On 2021-11-29, at 13:18, Juan Manuel Macías wrote: > Marcin Borkowski writes: > >> Quite the contrary. The amount of confusion between TeX (engine)/TeX >> (language)/TeX (distro)/TeX-aware text editor/LaTeX (whatever) among >> novice/casual users has always been te

Re: "Orgdown", the new name for the syntax of Org-mode

2021-11-28 Thread Marcin Borkowski
)/TeX (language)/TeX (distro)/TeX-aware text editor/LaTeX (whatever) among novice/casual users has always been terrible. Just my 2 cents, -- Marcin Borkowski http://mbork.pl

Re: A mobile clocking solution?

2021-11-27 Thread Marcin Borkowski
one) for half a day, and I found the experience terrible enough to not come near anything Apple-related;-). Best, mbork > > Its better to keep Emacs uncaged :) > > On Sat, Nov 27, 2021, at 7:25 AM, Marcin Borkowski wrote: >> >> On 2021-11-26, at 22:16, Samuel Banya

Re: A mobile clocking solution?

2021-11-27 Thread Marcin Borkowski
tter suited for a laptop or desktop computer since you really need to just > use a keyboard to pull off most of the magic. Of course. I don't need Org editing etc. (well, maybe capture), just the clocking. That seems easy enough on mobile (UI-wise).. > Good luck with this though, Thanks! -- Marcin Borkowski http://mbork.pl

Re: A mobile clocking solution?

2021-11-25 Thread Marcin Borkowski
ider data on my phone "safe" (it's much easier to lose a phone than a computer - or to have it stolen), so I'd prefer not to put my Org files there... I think I have an idea for a solution - but thanks anyway! Best, -- Marcin Borkowski http://mbork.pl

Re: A mobile clocking solution?

2021-11-23 Thread Marcin Borkowski
ich app are you talking about? -- Marcin Borkowski http://mbork.pl

A mobile clocking solution?

2021-11-21 Thread Marcin Borkowski
Hi all, AFAIK, there are a few mobile Org-mode apps for Android (I know about organice and Orgzly). From a skim of their docs I think they don't support clocking. Is that correct? If so, are there any mobile apps supporting clocking on a phone? TIA, -- Marcin Borkowski http://mbork.pl

  1   2   3   4   5   6   7   8   9   >