Skip to content

Commit df4001a

Browse files
committed
chore(common): fix no code block language errors
1 parent ed938c3 commit df4001a

34 files changed

+114
-96
lines changed

components/contextmenu/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ The popup of the component can be additionally customized via nested tags:
140140

141141
<div class="skip-repl"></div>
142142

143-
````
143+
````RAZOR
144144
<TelerikContextMenu>
145145
<ContextMenuSettings>
146146
<ContextMenuPopupSettings HorizontalCollision="..."/>

components/editor/toolbar.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The following code snippets show the built-in toolset configurations in `EditorT
6060

6161
<div class="skip-repl"></div>
6262

63-
````cs
63+
````C#
6464
public static List<IEditorTool> Default = new List<IEditorTool>()
6565
{
6666
new EditorButtonGroup(new Bold(), new Italic(), new Underline()),
@@ -180,7 +180,7 @@ This example shows how you can keep adding tools to the toolbar to get the desir
180180

181181
>caption Create your own toolbar
182182
183-
````
183+
````RAZOR
184184
@using Telerik.Blazor.Components.Editor
185185
@* Avoid ambiguous reference with SVG icons *@
186186
@using EditorNS = Telerik.Blazor.Components.Editor;

components/menu/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ The popup of the component can be additionally customized via nested tags:
135135

136136
<div class="skip-repl"></div>
137137

138-
````
138+
````RAZOR
139139
<TelerikMenu>
140140
<MenuSettings>
141141
<MenuPopupSettings HorizontalCollision="..."/>

components/multicolumncombobox/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ The popup of the component can be additionally customized via nested tags:
143143

144144
<div class="skip-repl"></div>
145145

146-
````
146+
````RAZOR
147147
<TelerikMultiColumnComboBox>
148148
<MultiColumnComboBoxSettings>
149149
<MultiColumnComboBoxPopupSettings Width="..." />

components/radiogroup/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ The RadioGroup provides a `FocusAsync` method that allows the application to foc
108108

109109
>caption Using RadioGroup methods
110110
111-
````
111+
````RAZOR
112112
<TelerikButton OnClick="@FocusRadioGroup">Focus RadioGroup</TelerikButton>
113113
114114
<TelerikRadioGroup @ref="@RadioGroupRef"

components/rangeslider/decimals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ position: 7
1212

1313
The RangeSlider uses this property to determine how many decimals to take and set to the value when calculating the differences between the min and max, and the steps. You can see an [example of wrong setup and the issue it can cause](#decimals-and-rounding-errors) below. Here is a simple example of the mathematical operation and how you can see unexpected floating numbers that could, at least to an extent, be avoided if you use high-precision number types such as decimal:
1414

15-
````
15+
````C#
1616
Math equation: 0.6 / 0.2
1717
Output: 2.9999999999999996
1818

components/slider/decimals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ position: 7
1212

1313
The Slider uses this property to determine how many decimals to take and set to the value when calculating the differences between the min and max, and the steps. You can see an [example of wrong setup and the issue it can cause](#decimals-and-rounding-errors) below. Here is a simple example of the mathematical operation and how you can see unexpected floating numbers that could, at least to an extent, be avoided if you use high-precision number types such as decimal:
1414

15-
````
15+
````C#
1616
Math equation: 0.6 / 0.2
1717
Output: 2.9999999999999996
1818

components/textarea/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ The TextArea provides a `FocusAsync` method that allows the application to focus
8282

8383
>caption Use TextArea methods
8484
85-
````
85+
````RAZOR
8686
<TelerikButton OnClick="@FocusTextArea">Focus TextArea</TelerikButton>
8787
8888
<TelerikTextArea @ref="@TextAreaRef"

components/textbox/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The TextBox provides a `FocusAsync` method that allows the application to focus
8080

8181
>caption Use TextBox methods
8282
83-
````
83+
````RAZOR
8484
<TelerikButton OnClick="@FocusTextBox">Focus TextBox</TelerikButton>
8585
8686
<TelerikTextBox @ref="@TextBoxRef"

deployment/ci-cd-build-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ When building or restoring Blazor apps in Docker, the crucial steps are:
114114

115115
The following code is the build portion of a sample `Dockerfile` that builds a .NET 8 Blazor Web App with two projects. The `dotnet restore` command is executed from the `src` folder of the Docker image (where the `NuGet.Config` is copied), so that the `NuGet.Config` file can be used to restore all projects in the solution.
116116

117-
```
117+
````SH
118118
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
119119
WORKDIR /src
120120

@@ -137,7 +137,7 @@ COPY . .
137137
# Build the app
138138
WORKDIR "/src/MyBlazorApp/MyBlazorApp"
139139
RUN dotnet build "./MyBlazorApp.csproj" -c Release -o /app/build
140-
```
140+
````
141141

142142

143143
## Further Reading

0 commit comments

Comments
 (0)