Sorry, there's nothing at this address.
10 |This page lists the rules that are currently supported, their options, and corresponding code samples.
5 |@option.Name
- @codeStyleRule.Title (@codeStyleRule.Id)
17 | @optionValue.Value
-
25 | @optionValue.Description
26 | 34 | This rule takes an ordered list of the following options without repititions. 35 |
36 |@value
42 | @category.Description
37 | } 38 |@((MarkupString)string.Join("_", currentRuleOption.Name.Split("_").Select(part => $"{part}")))
48 | – @currentCodeStyleRule.Title (@currentCodeStyleRule.Id)
49 | 76 | @currentCodeStyleRule.Id: "@currentCodeStyleRule.Title" 77 |
78 |
17 |
18 | @Code.Trim()
19 |
20 |
21 | }
22 |
23 | @code {
24 | private ElementReference codeBlock;
25 |
26 | private string commonClasses = "text-start";
27 |
28 | private string? hoverClasses;
29 |
30 | [Parameter, EditorRequired]
31 | public string Code { get; set; } = "";
32 |
33 | [Parameter, EditorRequired]
34 | public string Language { get; set; } = "";
35 |
36 | [Parameter]
37 | public Color? BorderHoverColor { get; set; }
38 |
39 | [Parameter]
40 | public Color? BorderColor { get; set; }
41 |
42 | [Parameter]
43 | public Func@optionValue.Value
@(optionValue.Value == ValueOptions.DefaultOptionValue ? " (default)" : "")
7 | @optionValue.Description
9 |2 | @ValueOptions.Description 3 |
4 |@value
13 | @value
30 |