# doc-web-md2html
**Repository Path**: binid/doc-web-md2html
## Basic Information
- **Project Name**: doc-web-md2html
- **Description**: markdown转html工具
- **Primary Language**: JavaScript
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2022-08-12
- **Last Updated**: 2022-08-12
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
## 添加git子模块
> 将这个存放Markdown文件的仓库作为`子模块`引入,并指定存放目录`md/xxxxx`
```bash
git submodule init
git submodule add git@gitee.com:xxxxxxx.git md/xxxxx
```
## 更新子模块
```bash
git submodule update --remote
```
## 安装需要的包
```bash
yarn
```
## 执行转换,最终在`/html目录`下中生成文件
```js
node make
```