File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ A number of elements have been moved to the sister netcore project.
17
17
18
18
Install from NuGet
19
19
20
- ```
20
+ ``` powershell
21
21
Install-Package ICG.AspNetCore.Utilities
22
22
```
23
23
24
24
### Register Dependencies
25
25
26
26
To utilize the tag helpers modify ` _viewimports.cshtml ` by adding
27
27
28
- ```
28
+ ``` html+razor
29
29
@addTagHelper *, AspNetCore.Utilities
30
30
```
31
31
@@ -36,7 +36,7 @@ To utilize the tag helpers modify `_viewimports.cshtml` by adding
36
36
#### HideCondition
37
37
This tag helper will hide the content of the target element if the condition is true, an example.
38
38
39
- ```
39
+ ``` html
40
40
<div hide-condition =" Model.Deleted" >
41
41
42
42
</div >
@@ -45,7 +45,7 @@ This tag helper will hide the content of the target element if the condition is
45
45
#### Show Condition
46
46
This tag helper will show the content of the target element if the condition is true, an example.
47
47
48
- ```
48
+ ``` html
49
49
<div show-condition =" Model.Published" >
50
50
51
51
</div >
You can’t perform that action at this time.
0 commit comments