In Angular 2, what is the best practice for rendering user-submitted HTML (from a markdown editor, for example) if you'd like to be able to create bindings to the elements rendered?
Currently, I'm rendering using innerHTML and a pipe that bypasses the sanitizer. Is this the only way to render this content? If so, is there a way to allow bindings, attribute directives and components within?