I wanted to create a surrounding snippet that uses the $selected$ text twice - as the text and the title of an HTML link. Here is what I have written:
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippet Format="1.0.0" xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<Header>
<SnippetTypes>
<SnippetType>SurroundsWith</SnippetType>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
<Title>My Link</Title>
<Author>Me</Author>
<Description>Makes a special link.</Description>
<HelpUrl>
</HelpUrl>
<Shortcut>myLink</Shortcut>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>Link</ID>
<ToolTip></ToolTip>
<Default>http://www.aggienetwork.com</Default>
<Function></Function>
</Literal>
</Declarations>
<Code Language="html"><![CDATA[<a style="color: #1a4e9d; text-decoration: none;"
href="$Link$" title="$selected$" target="_blank">$selected$</a>$end$]]></Code>
</Snippet>
</CodeSnippet>
If I use this, the $selected$ text just appears once as the text and the title property is blank. Anyone know how to make this work?