From 8384c00f7e40c1a6ea6985c9629d045c784162d3 Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Wed, 20 Aug 2025 09:32:42 -0400 Subject: [PATCH] Allow plus signs in 'to' and 'from' entities. --- templateflow/conf/config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templateflow/conf/config.json b/templateflow/conf/config.json index 90185f49..22cda836 100644 --- a/templateflow/conf/config.json +++ b/templateflow/conf/config.json @@ -52,11 +52,11 @@ }, { "name": "from", - "pattern": "(?:^|_)from-([a-zA-Z0-9]+).*xfm" + "pattern": "(?:^|_)from-([a-zA-Z0-9+]+).*xfm" }, { "name": "to", - "pattern": "(?:^|_)to-([a-zA-Z0-9]+).*xfm" + "pattern": "(?:^|_)to-([a-zA-Z0-9+]+).*xfm" }, { "name": "mode",