Skip to content

Commit a82245f

Browse files
committed
Fix some md files with wrong skip-repl
1 parent a4ecd1e commit a82245f

File tree

7 files changed

+54
-67
lines changed

7 files changed

+54
-67
lines changed

_contentTemplates/common/get-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ In this tutorial, you will use the [Telerik NuGet feed]({%slug installation/nuge
4646

4747
#add-component-sample
4848

49-
````RAZOR
49+
````RAZOR.skip-repl
5050
<TelerikButton>Say Hello</TelerikButton>
5151
````
5252

5353
1. Optionally, hook up a click handler that will show a message. The resulting view will look like this:
5454

55-
````RAZOR
55+
````RAZOR.skip-repl
5656
@page "/"
5757
5858
<TelerikButton ThemeColor="@ThemeConstants.Button.ThemeColor.Primary"

components/form/formitems/formitemstemplate.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -110,14 +110,14 @@ Here are the steps to migrate custom content inside the Form from version 4.0.1-
110110

111111
>caption Comparison between versions up to 4.0.1 and after 4.2.0.
112112
113-
<div class="skip-repl"></div>
114113
<table>
115114
<thead><tr><th>Up to 4.0.1</th><th>From 4.2.0</th></tr></thead>
116115
<tbody><tr>
117116
<td>
118117
<p><strong>Index.razor</strong></p>
119118

120-
````RAZOR
119+
120+
````RAZOR.skip-repl
121121
<TelerikForm>
122122
<FormItems>
123123
<div>
@@ -159,7 +159,6 @@ Here are the steps to migrate custom content inside the Form from version 4.0.1-
159159
160160
161161
162-
163162
164163
165164
</TelerikForm>
@@ -169,7 +168,7 @@ Here are the steps to migrate custom content inside the Form from version 4.0.1-
169168
<td>
170169
<p><strong>Index.razor</strong></p>
171170

172-
````RAZOR
171+
````RAZOR.skip-repl
173172
<TelerikForm>
174173
<FormItems>
175174
@@ -222,7 +221,7 @@ Here are the steps to migrate custom content inside the Form from version 4.0.1-
222221
<td>
223222
<p><strong>ChildComponent.razor</strong></p>
224223

225-
````RAZOR
224+
````RAZOR.skip-repl
226225
<FormItem Field="FieldName4" />
227226
228227
@@ -231,14 +230,13 @@ Here are the steps to migrate custom content inside the Form from version 4.0.1-
231230
232231
233232
234-
235233
````
236234

237235
</td>
238236
<td>
239237
<p><strong>ChildComponent.razor</strong></p>
240238

241-
````RAZOR
239+
````RAZOR.skip-repl
242240
<TelerikFormItemRenderer Item="@NestedFormItem" />
243241
244242
@code {

getting-started/client-blazor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ To enable the Telerik UI for Blazor components, you must add several client-side
6767

6868
In the `~/_Imports.razor` file, add the `@using` directives below. This configures the project to recognize the Telerik components in all files. You can register one or both icon namespaces, depending on the [icon type you will be using]({%slug common-features-icons%}).
6969

70-
````RAZOR _Imports.razor
70+
````RAZOR.skip-repl
7171
@using Telerik.Blazor
7272
@using Telerik.Blazor.Components
7373
@using Telerik.SvgIcons

getting-started/server-blazor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ To enable the Telerik UI for Blazor components, you must add several client-side
6969

7070
In the `~/_Imports.razor` file, add the `@using` directives below. This configures the project to recognize the Telerik components in all files. You can register one or both icon namespaces, depending on the [icon type you will be using]({%slug common-features-icons%}).
7171

72-
````RAZOR _Imports.razor
72+
````RAZOR.skip-repl
7373
@using Telerik.Blazor
7474
@using Telerik.Blazor.Components
7575
@using Telerik.SvgIcons

upgrade/breaking-changes/2-0-0.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Until now, you had to include things like `@using Telerik.Blazor.Components.<Com
3131

3232
As of the `2.0.0` version, you only need to add the following to your main **~/_Imports.razor** file, and you have to remove the `@using` statements per component:
3333

34-
````RAZOR
34+
````RAZOR.skip-repl
3535
@using Telerik.Blazor
3636
@using Telerik.Blazor.Components
3737
````
@@ -42,7 +42,7 @@ You can keep `@using Telerik.Blazor.Components` in the views, it simply is not n
4242

4343
Some enums had to move to different namespaces and/or to have more descriptive names:
4444

45-
````CSHTML
45+
````Razor.skip-repl
4646
// Chart
4747
Telerik.Blazor.ChartSeriesStack -> Telerik.Blazor.ChartSeriesStackType
4848
@@ -147,7 +147,7 @@ This is a list of the components that had their child tags removed or renamed.
147147
* The `TelerikGridEvents` and `EventsManager` tags are removed. The CRUD events of the grid are now available at its root-level tag, for example `<TelerikGrid OnRead=@ReadItems>`.
148148
* All child tags that had `Telerik` as a prefix do not have that prefix anymore.
149149

150-
````RAZOR
150+
````RAZOR.skip-repl
151151
// Old
152152
<TelerikGrid Data=@GridData>
153153
<TelerikGridColumns>

0 commit comments

Comments
 (0)