An open API service indexing awesome lists of open source software.

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

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!!