From 58a2717f6efa70353a2b76594dbfcea09b2f24f0 Mon Sep 17 00:00:00 2001 From: yannickreiss Date: Sun, 15 Sep 2024 19:45:14 +0200 Subject: [PATCH] Add HTML hello world snippet --- UltiSnips/html.snippets | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/UltiSnips/html.snippets b/UltiSnips/html.snippets index 3086824..1b903fc 100644 --- a/UltiSnips/html.snippets +++ b/UltiSnips/html.snippets @@ -1,4 +1,19 @@ -snippet << "Tag for html" bA -<$1>$2$0 +snippet helloworld "A little hello world example." b + + + + Hello world example + + +

Hello World

+ + endsnippet +snippet << "Tag for html" bA +<${1:p}>$2$0 +endsnippet + +snippet >> "Line break / closing tag" +$0 +endsnippet