From ebfb6f3bf2df9b88cb0d524a0b8a47953329ea75 Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Thu, 31 Jul 2025 12:50:14 +0200 Subject: [PATCH] Fix BibTeX template type field to use correct syntax MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove unnecessary double brace escaping from type field - Use @{doc[type]} directly as papis handles it correctly 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- modules/papis.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/papis.nix b/modules/papis.nix index 8d42a4d..d9f5865 100644 --- a/modules/papis.nix +++ b/modules/papis.nix @@ -48,7 +48,7 @@ # Papis BibTeX template home.file."Library/Application Support/papis/templates/bibtex.template".text = '' - @{{doc[type]}}{{{doc[ref]}, + @{doc[type]}{{{doc[ref]}, author = {{{doc[author]}}}, title = {{{doc[title]}}}, year = {{{doc[year]}}},