As a newcomer to Angular 2.1, I am looking to spruce up some elements for automatic translation using a custom directive. The syntax I have in mind is:
<span customDirectiveTranslation="translateble">{{translateble}}</span>
or simply
<span customDirectiveTranslation>{{translateble}}</span>
I have already used the Renderer in the directive class to create elements like span, but now I want to know how to render a component inside another component using a custom directive. Thank you!