Hello, Suvayu Ali <fatkasuvayu+li...@gmail.com> writes:
> I noticed yesterday that export snippet translations are being ignored. > I have tested this behaviour in a minimal Emacs instance. > > 1. $ emacs -Q -l minimal-org.el > 2. Eval: > (add-to-list 'org-export-snippet-translation-alist > '(("b" . "beamer") > ("l" . "latex"))) This produces an invalid value for the variable: '((("b" . "beamer") ("l" . "latex"))) Notice the spurious pair of parens. You may use: (add-to-list 'org-export-snippet-translation-alist '("b" . "beamer")) (add-to-list 'org-export-snippet-translation-alist '("l" . "latex")) Regards, -- Nicolas Goaziou