From bcdab29c30ba4a8e47faf164aad714e92aba31ab Mon Sep 17 00:00:00 2001 From: schneekluth <5740913+schneekluth@users.noreply.github.com> Date: Thu, 12 Mar 2026 15:45:49 +0100 Subject: [PATCH] added snippet for obfuscated email shortcode --- .vscode/blowfish.code-snippets | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.vscode/blowfish.code-snippets b/.vscode/blowfish.code-snippets index abd80369..46c71202 100644 --- a/.vscode/blowfish.code-snippets +++ b/.vscode/blowfish.code-snippets @@ -79,7 +79,14 @@ "{{< /chart >}}" ], "description": "Use the Chart.js library to embed charts into articles using simple structured data. Blowfish chart Shortcode. Documentation: https://blowfish.page/docs/shortcodes/#chart ", - }, + }, + "email": { + "prefix": ["BFS-email", "HSC-email", "email"], + "body": [ + "{{< email email=\"mailto:${1:hello@test.com}\" text=\"${2:text}\" subject=\"${3:Reply to awesome article}\" >}}$0", + ], + "description": "Creates an obfuscated mailto link. Documentation: https://blowfish.page/docs/shortcodes/#email ", + }, "figure": { "prefix": ["BFS-figure", "HSC-figure", "figure"], "body": [ @@ -255,4 +262,4 @@ "description": "Typewriter-Like text. Blowfish typeit Shortcode. Documentation: https://blowfish.page/docs/shortcodes/#typeit https://www.typeitjs.com/docs/vanilla/usage/ ", }, -} \ No newline at end of file +}