如何将 Markdown-it 添加到 angular 8

How to add Markdown-it to angular 8

我想知道是否有人知道如何将 Markdown-it 添加到现有的 Angular 8 应用程序。我已经使用 npm install 安装了包,但不知道如何将它导入到我的组件中。 有谁知道如何做到这一点? 提前致谢!

安装 markdown-it

npm i markdown-it

import { Component, OnInit } from '@angular/core';
import md from 'markdown-it';
@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
  private markdown;
  outHtml;
  constructor(){
    this.markdown=md();
    this.outHtml=this.markdown.render("# Ahmad Hamzavi");
  }

  ngOnInit() {
  }

}
<span [innerHTML]="outHtml" ></span>