This repository was archived by the owner on Dec 19, 2018. It is now read-only.
This repository was archived by the owner on Dec 19, 2018. It is now read-only.
Add CSS value selectors to TagHelper attributes #684
Closed
Description
Add the ability to do:
HtmlTargetElement(Attributes = "href^=~/") // Value starts with "~/"
HtmlTargetElement(Attributes = "href$=;") // Value ends with ";"
HtmlTargetElement(Attributes = "href=something") // Value equals "something"
This would enable our UrlResolutionTagHelper
in MVC to only apply when it sees a ~/
.