Skip to content

Instantly share code, notes, and snippets.

@hookdump
Forked from istupakov/markdown.component.ts
Created September 7, 2017 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hookdump/9af7b39caa95c130918feb5a7e8a028d to your computer and use it in GitHub Desktop.
Save hookdump/9af7b39caa95c130918feb5a7e8a028d to your computer and use it in GitHub Desktop.
Angular 4 Markdown Component with Router Navigation.
import { Component, Input, ViewChild, AfterViewInit, ElementRef } from '@angular/core';
import { Router } from '@angular/router';
import { markdown } from 'markdown';
@Component({
selector: 'markdown',
template: `<div [innerHtml]="html" #root></div>`
})
export class MarkdownComponent implements AfterViewInit {
@ViewChild('root') root: ElementRef;
html: string;
@Input()
set data(value: string) {
this.html = markdown.toHTML(value);
}
constructor(private router: Router) { }
ngAfterViewInit() {
let links: HTMLAnchorElement[] = this.root.nativeElement.querySelectorAll('a');
links.forEach(el => el.addEventListener('click', event => {
if (location.origin === (<any>el).origin) {
event.preventDefault();
this.router.navigateByUrl(el.getAttribute('href'));
}
}));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment