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 OutputElementHintAttribute to control inherited TagHelper IntelliSense. #382
Closed
Description
Right now if you create a TagHelper
<foo>
which translates into a <ul>
you miss out on any ul
specific HTML IntelliSense when writing <foo
. It'd be nice to have an attribute that would cause the HTML editor to inherit specified tag IntelliSense. AKA
[OutputElementHint("ul")]
public class FooTagHelper : TagHelper
{
...
}
Which would result in <foo
invoking global and ul
based IntelliSense.