https://github.com/karthik25/tagsharp
A collection of .net core tag helpers
https://github.com/karthik25/tagsharp
csharp mvc-core mvc6 netcore taghelpers
Last synced: 10 months ago
JSON representation
A collection of .net core tag helpers
- Host: GitHub
- URL: https://github.com/karthik25/tagsharp
- Owner: karthik25
- Created: 2016-11-24T04:29:13.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-11T01:06:54.000Z (about 9 years ago)
- Last Synced: 2025-08-01T07:56:17.968Z (11 months ago)
- Topics: csharp, mvc-core, mvc6, netcore, taghelpers
- Language: C#
- Size: 1.18 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tag Sharp
Tag# collection of .net core tag helpers. The plan is to include as many as possible. At this point only bootstrap
is available.
In order to start using the Tag# tag helpers, first use nuget to include the package - search for `TagSharp`. then open _ViewImports.cshtml to
indicate that you intend to use the Tag# tag helpers as shown below:
```csharp
@addTagHelper *, TagSharp
```
Now you are all set to start using Tag# tag helpers.
For example in order to create a simple label here is what you can do.
```html
Default
Primary
Danger
```
Similarly in order to create a panel, here is what you can do.
```html
Default Panel
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's
standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make
a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,
remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing
Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including
versions of Lorem Ipsum.
Thank You!
```
There is a demo included in this project to fully explain the entire list of possiblities!!
Its a work in progress and I am still learning the nuances of tag helpers, so it will take a few iterations to be good, leave alone perfect! Thanks for looking!!