Re: Debugging at least 2 regressions in org-mode master breaking ox-hugo

2020-04-25 Thread Kyle Meyer
Kyle Meyer writes: > I'll plan to bring that commit into master tomorrow. We can > reevaluate/rework the change if needed when Bastien is back in action. Done with 3c31941139ed6de14aebee950141dabbd7c0b468.

Re: wip-cite status question and feedback

2020-04-25 Thread Bruce D'Arcus
On Sat, Apr 25, 2020 at 4:03 PM Nicolas Goaziou wrote: ... > > My understanding, though, is that org "cite" would default to your > > last example I quote above (in natibib, citep); that there's no need > > for a dedicated "cite/paren" command, either reserved or not. > > Not necessarily.

Re: wip-cite status question and feedback

2020-04-25 Thread Nicolas Goaziou
Hello, "Bruce D'Arcus" writes: > On Sat, Apr 25, 2020 at 12:20 PM Nicolas Goaziou > wrote: > [...] >> >> [cite/text: ...] >> [cite/paren: ...] >> > So in this approach, we have a single core "cite" command, and > everything else is a namespaced extension? Indeed. > My understanding,

Re: wip-cite status question and feedback

2020-04-25 Thread Bruce D'Arcus
First, thanks for your work on this Nicolas; really awesome to see the progress! I'm just going to address your syntax/cite command question. I don't have concerns about the other details, and I think others are better positioned to comment on those ... On Sat, Apr 25, 2020 at 12:20 PM Nicolas

Re: wip-cite status question and feedback

2020-04-25 Thread Nicolas Goaziou
Hello, I cannot answer all open questions as the thread would spread too thin. So, I'll try to subsume where Org is at the moment, and what need to be decided. First things first, I pushed a new branch, "wip-cite-new" in the repository, with an modified implementation of citation syntax,

[SOLVED] Re: org-set-tags function will overwrite original tags when use it pragmatically

2020-04-25 Thread stardiviner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Nicolas Goaziou writes: > Hello, > > stardiviner writes: > >> I use function ~org-set-tags~ pragmatically like this: > > [...] > >> But I found a problem, it will overwrite original tags. It's not appending >> method. > > Well, it is expected

org-thtml - static html site in pure org + Emacs

2020-04-25 Thread Juan José García-Ripoll
Hi, I have created this standalone framework for building static HTML sites using Emacs and org-mode https://github.com/juanjosegarciaripoll/org-thtml/ The github repository has a sample mini-site, but you may want to see a more mature one at my homepage https://juanjose.garciaripoll.com It

Re: how to get an org-link to open a program in eshell

2020-04-25 Thread Joseph Vidal-Rosset
Many thanks Kyle for your reply, In fact I have succeeded to open directly some programs with eshell thanks to org-links like the following one: [[eshell:program_name]] If I put these org-links into an org file and if I have bookmarked this file. Nevertheless, I do not find that this

Re: org-set-tags function will overwrite original tags when use it pragmatically

2020-04-25 Thread Nicolas Goaziou
Hello, stardiviner writes: > I use function ~org-set-tags~ pragmatically like this: [...] > But I found a problem, it will overwrite original tags. It's not appending > method. Well, it is expected according to its docstring, isn't it? > I hope this function can be improve to suitable for

org-set-tags function will overwrite original tags when use it pragmatically

2020-04-25 Thread stardiviner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 I use function ~org-set-tags~ pragmatically like this: #+begin_src emacs-lisp (defun my/org-add-note--auto-add-tag () "Auto add tag 'NOTE' when add note log." (org-back-to-heading) (org-set-tags '("LOG"))) (advice-add 'org-add-note :after