Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

up vote 1 down vote accepted

This seems to be an issue, hopefully Microsoft will consider $selected$ to be used as a literal in future...

Code Element (IntelliSense Code Snippets)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.