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.
Tag Helpers not available within script tag #502
Closed
Description
I'm trying to use a tag helper within a script tag (this is how knockoutjs does its templating) but this seems to be blocked from happening. This is the sort of thing that I'm wanting to do where bool is my own custom tag helper:
<script type="text/html" id="checkbox-template">
<li>
<bool ko-bind-checked="Checked" ko-bind-value="Value" ko-bind-label="Name" />
</li>
</script>