Open johnwc opened 7 years ago
This is a Bootstrap library, which is why when using its helpers it applies Bootstrap specific classes to elements. The whole purpose of it is to use default Bootstrap specific html when using MVC helpers. Please use regular Html helpers in other situations.
No where does bootstrap say that a link defaults to a button, it's a option to enable it as such if you choose.
This was never the case prior to updating to the latest version of your library. All my links now look horrible and I am being forced to go through every single page to add the style as none. Why did it get changed from none to button?
Also, I need to use your framework to add other bootstrap items to this, like Prepending a icon and setting a Tooltip. Those options aren't available to the "regular" Html helpers.
@Html.Bootstrap().Link("Test", "Test")
This produces<a class="btn-default">Test</a>
, expected to produce<a>Test</a>
with no class.