Skip to content

Commit 0a931c3

Browse files
Updated formatting
1 parent a309648 commit 0a931c3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ A number of elements have been moved to the sister netcore project.
1717

1818
Install from NuGet
1919

20-
```
20+
``` powershell
2121
Install-Package ICG.AspNetCore.Utilities
2222
```
2323

2424
### Register Dependencies
2525

2626
To utilize the tag helpers modify `_viewimports.cshtml` by adding
2727

28-
```
28+
``` html+razor
2929
@addTagHelper *, AspNetCore.Utilities
3030
```
3131

@@ -36,7 +36,7 @@ To utilize the tag helpers modify `_viewimports.cshtml` by adding
3636
#### HideCondition
3737
This tag helper will hide the content of the target element if the condition is true, an example.
3838

39-
```
39+
``` html
4040
<div hide-condition="Model.Deleted">
4141

4242
</div>
@@ -45,7 +45,7 @@ This tag helper will hide the content of the target element if the condition is
4545
#### Show Condition
4646
This tag helper will show the content of the target element if the condition is true, an example.
4747

48-
```
48+
``` html
4949
<div show-condition="Model.Published">
5050

5151
</div>

0 commit comments

Comments
 (0)