I made a component which uses the marked package to render markdown content, the thing is it doesn\'t re-render itself when an async event changes its n
marked
n
Adding an @Input() content; and using the component like
@Input() content;
would make this easier.
Alternatively a MutationObserver should work well for this specific use case.