Re: [PATCH] ob-tangle: Tangle BibTeX files with the standard .bib file extension

2025-01-05 Thread Ihor Radchenko
Rudolf Adamkovič writes: > I wanted to make sure this behavior, specifically for BibTeX, will never > get "lost in translation", say when refactoring. ... Ok. Applied, onto main. https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=405787dfbc -- Ihor Radchenko // yantar92, Org mode

Re: [PATCH] ob-tangle: Tangle BibTeX files with the standard .bib file extension

2025-01-05 Thread Rudolf Adamkovič
Ihor Radchenko writes: >> +(ert-deftest ob-tangle/bibtex () >> + "Tangle BibTeX into a `.bib' file." > > I think that the test is not necessary here. > We already test `org-babel-tangle-lang-exts' in > `ob-tangle/collect-blocks', I think. > Or do I miss something? I wanted to make sure this beh

Re: [PATCH] ob-tangle: Tangle BibTeX files with the standard .bib file extension

2025-01-05 Thread Ihor Radchenko
Rudolf Adamkovič writes: > +*** BibTeX is tangled with the standard =.bib= file extension > + > +Previously, =bibtex= source blocks located in a file named =NAME.org= > +were tangled into a file named =NAME.bibtex=. Now, they are tangled > +into a file named =FILE.bib=, using the standard extens

[PATCH] ob-tangle: Tangle BibTeX files with the standard .bib file extension

2025-01-05 Thread Rudolf Adamkovič
--- etc/ORG-NEWS | 7 +++ lisp/ob-tangle.el | 3 ++- testing/lisp/test-ob-tangle.el | 24 3 files changed, 33 insertions(+), 1 deletion(-) diff --git a/etc/ORG-NEWS b/etc/ORG-NEWS index 8f266c560..097550805 100644 --- a/etc/ORG-NEWS ++