markdown-it-vue 能使用html语句根据<br/>能实现换行操作

翟承志
2023-12-01

markdown-it-vue 能使用html语句根据br能实现换行操作

1、在线实例

http://www.aqcoder.com/markdown

2、安装

npm install markdown-it-vue

3、使用

<markdown-it-vue :content="content" :options="options"/> //content里写的是markdown的内容
//在data中写:
options: {
        markdownIt: {
          linkify: false, // 原本加上.就会显示链接 写为false后,不显示链接
          html:true,
        },
        linkAttributes: {
          attrs: {
            show:false,
            target: '_blank',
            rel: 'noopener'
          }
        }
      },
      content:"",
 类似资料: