NodeJs案例 简单 md文件转换html文件

简单md文档 

转换后的html文件 

 

// 1.从md文件读入内容
// fs.readFlie()
const fs = require('fs')
const path = require('path')
const p = path.join(__dirname, 'txt.md')
fs.readFile(p, 'utf8', (err, data) => {
  if (err) {
    console.log('err', err)
    return
  }
  // console.log('data', data)
  // 2.转成html的内容
  // 把字符串用\n分割成数组 split()
  const arr = data.split('\n')
  // console.log(arr)
  // 声明一个空字符串,用来合并
  let bigStr = ''
  // forEach循环
  arr.forEach(item => {
    if (item.startsWith('# ')) {
      // replace() 替换
      const newStr = "<h1>" + item.replace('# ', '') + "</h1>"
      // console.log(newStr)
      bigStr += newStr
      // startsWith()  判断是否以xxx开头
    } else if (item.startsWith('## ')) {
      const newStr = "<h2>" + item.replace('## ', '') + "</h2>"
      bigStr += newStr
    } else if (item.startsWith('### ')) {
      const newStr = "<h3>" + item.replace('### ', '') + "</h3>"
      bigStr += newStr
    } else {
      const newStr = "<p>" + item + "</p>"
      bigStr += newStr
    }
  })
  // console.log(bigStr)
  // 3.写入一个html文件
  // fs.writeFile
  fs.writeFile(path.join(__dirname, 'mdToHtml.html'), bigStr, (err) => {
    console.log('错误', err);
  })
})

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值