Skip to content

Commit d5dbe4e

Browse files
authored
docs(tagcloud): fix code snippet layout
1 parent 43bf55c commit d5dbe4e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

controls/tagcloud/getting-started.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ position: 2
1616

1717
**Synopsis:** The following tutorial demonstrates how to set up a page with **RadTagCloud** and manually populate the control with keywords. The walk-through will also show how to sort the items alphabetically in ascending order.
1818

19-
1. Add a RadTagCloud control in the default page of a new ASP.NET AJAX-enabled Web Application.
19+
Add a RadTagCloud control in the default page of a new ASP.NET AJAX-enabled Web Application.
2020

2121
![Getting Started with the Telerik WebForms TagCloud](images/tagcloud_getting_started01.png "Getting Started with the Telerik WebForms TagCloud")
2222

23-
1. In the Source view of the .aspx page, find the definition of the TagCloud, and add the `<Items></Items>` inner property.
23+
In the Source view of the .aspx page, find the definition of the TagCloud, and add the `<Items></Items>` inner property.
2424

25-
1. Add the following list of items between the opening and the closing tag of the `<Items>` property. Every item represents a country, with the Weight of the item equal representing the millions of people living there, and the NavigateUrl pointing to the country's Wikipedia article
25+
Add the following list of items between the opening and the closing tag of the `<Items>` property. Every item represents a country, with the Weight of the item equal representing the millions of people living there, and the NavigateUrl pointing to the country's Wikipedia article
2626

27-
````ASPNET
27+
````ASPNET
2828
<telerik:RadTagCloud RenderMode="Lightweight" ID="RadTagCloud1" runat="server" Width="400px" MaxFontSize="50px">
2929
<Items>
3030
<telerik:RadTagCloudItem Text="Russia" Weight="141.9" NavigateUrl="https://en.wikipedia.org/wiki/Russia" />
@@ -41,8 +41,8 @@ position: 2
4141
</telerik:RadTagCloud>
4242
````
4343

44-
1. Set the following properties in the Properties Window of RadTagCloud **Width="400px"MaxFontSize="50px"Sorting="AlphabeticAsc"**
44+
Set the following properties in the Properties Window of RadTagCloud **Width="400px"MaxFontSize="50px"Sorting="AlphabeticAsc"**
4545

46-
1. Press F5 to run the application. When a tag is clicked the browser navigates to the respective Wikipedia article.
46+
Press F5 to run the application. When a tag is clicked the browser navigates to the respective Wikipedia article.
4747

4848
![RadTagCloud](images/tagcloud_getting_started02.png)

0 commit comments

Comments
 (0)