Skip to content

Commit 2e16bb4

Browse files
author
Greg Van Liew
authored
Merge pull request #631 from AmadeusW/patch-2
Removes dashes from the sample code
2 parents c6dbc66 + 3df1ea3 commit 2e16bb4

File tree

1 file changed

+32
-33
lines changed

1 file changed

+32
-33
lines changed

docs/extensibility/how-to-create-an-atom-feed-for-a-private-gallery.md

Lines changed: 32 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -38,41 +38,40 @@ You can create an Atom (RSS) feed to an intranet location that contains extensio
3838
The contents of the atom.xml file would resemble the following example:
3939

4040
```
41-
  <?xml version="1.0" encoding="utf-8" ?>
42-
- <feed xmlns="http://www.w3.org/2005/Atom">
43-
  <title type="text" />
44-
  <id>uuid:bcecded5-97c8-4d24-96f1-7d9e16652433;id=1</id>
45-
  <updated>2011-04-14T21:25:48Z</updated>
46-
- <entry>
47-
  <id>SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa</id>
48-
  <title type="text">Highlight all occurrences of selected word</title>
49-
  <summary type="text">This extends the editor to highlight ....</summary>
50-
  <published>2011-04-14T14:24:51-07:00</published>
51-
  <updated>2011-04-14T14:24:22-07:00</updated>
52-
- <author>
53-
  <name>Microsoft</name>
54-
  </author>
55-
  <link rel="icon" href="VSIXImages/SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa_Icon_SelectionHighlightIcon.jpg" />
56-
  <link rel="previewimage" href="VSIXImages/SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa_PreviewImage_SelectionHighlight.jpg" />
57-
  <content type="application/octet-stream" src="SelectionHighlight.vsix" />
58-
- <Vsix xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/developer/vsx-syndication-schema/2010">
59-
  <Id>SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa</Id>
60-
  <Version>1.31</Version>
61-
  <References />
62-
  <Rating xsi:nil="true" />
63-
  <RatingCount xsi:nil="true" />
64-
  <DownloadCount xsi:nil="true" />
65-
  </Vsix>
66-
  </entry>
67-
- <entry>
68-
  <id>Template_Wizard_239.Microsoft.3b38a7e3-5cbc-4389-a92a-d82tyc2ed592</id>
69-
  ...
70-
  </entry>
71-
  </feed>
72-
41+
<?xml version="1.0" encoding="utf-8" ?>
42+
<feed xmlns="http://www.w3.org/2005/Atom">
43+
<title type="text" />
44+
<id>uuid:bcecded5-97c8-4d24-96f1-7d9e16652433;id=1</id>
45+
<updated>2011-04-14T21:25:48Z</updated>
46+
<entry>
47+
<id>SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa</id>
48+
<title type="text">Highlight all occurrences of selected word</title>
49+
<summary type="text">This extends the editor to highlight ....</summary>
50+
<published>2011-04-14T14:24:51-07:00</published>
51+
<updated>2011-04-14T14:24:22-07:00</updated>
52+
<author>
53+
<name>Microsoft</name>
54+
</author>
55+
<link rel="icon" href="VSIXImages/SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa_Icon_SelectionHighlightIcon.jpg" />
56+
<link rel="previewimage" href="VSIXImages/SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa_PreviewImage_SelectionHighlight.jpg" />
57+
<content type="application/octet-stream" src="SelectionHighlight.vsix" />
58+
<Vsix xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/developer/vsx-syndication-schema/2010">
59+
<Id>SelectionHighlight..a14874d2-8199-4a60-af8a-11d6447813aa</Id>
60+
<Version>1.31</Version>
61+
<References />
62+
<Rating xsi:nil="true" />
63+
<RatingCount xsi:nil="true" />
64+
<DownloadCount xsi:nil="true" />
65+
</Vsix>
66+
</entry>
67+
<entry>
68+
<id>Template_Wizard_239.Microsoft.3b38a7e3-5cbc-4389-a92a-d82tyc2ed592</id>
69+
...
70+
</entry>
71+
</feed>
7372
```
7473

7574
Notice that the two link tags refer to screen shots in the generated folder of images.
7675

7776
## See Also
78-
[Private Galleries](../extensibility/private-galleries.md)
77+
[Private Galleries](../extensibility/private-galleries.md)

0 commit comments

Comments
 (0)