This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/attic.git
The following commit(s) were added to refs/heads/main by this push:
new db48ac1 No need to use interpolation here
db48ac1 is described below
commit db48ac1d98bd9eec86711aceb0f2a2347f57b136
Author: Sebb <[email protected]>
AuthorDate: Sat May 3 00:14:21 2025 +0100
No need to use interpolation here
---
_plugins/out-tag.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/_plugins/out-tag.rb b/_plugins/out-tag.rb
index 0eae7f7..55876c0 100644
--- a/_plugins/out-tag.rb
+++ b/_plugins/out-tag.rb
@@ -27,7 +27,7 @@ module Jekyll
end
def render(context)
- "#{@text}"
+ @text
end
end
end