我想创建一个使用$selected$
文本两次的周围片段 - 作为HTML链接的文本和标题。这是我写的:
<?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>
如果我使用它,$selected$
文本只显示一次作为文本,title属性为空。任何人都知道如何使这项工作?
答案 0 :(得分:2)
这似乎是一个问题,希望微软将来会考虑将$selected$
用作文字......