I am trying to create a Visual Studio snippet and cannot get it to add basically a blank line. See below for my example:
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets
xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.1.0">
<Header>
<Title>Bootstrap Row</Title>
<Shortcut>brow</Shortcut>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
<SnippetType>SurroundsWith</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Code Language="HTML"><![CDATA[<div class="row">
$selected$$end$
</div>]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
What I am trying to get is:
<div class="row">
CursorHere
</div>
What I actually am getting is:
<div class="row">
CursorHere</div>
Any tips or tricks to get this to do what im trying?
Thanks!
/div>on next line for me, but also it erasesCursorHeretext! It looks like a something is broken in html snippets.