![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
一个简单的将markdown转为html的命令行工具。
npm install --save gomd
或
npm install -g gomd
const gomd = require('gomd');
gomd({
watch: true, // 是否监听markdown文件变化
input: 'xxx', // 输入markdown文件路径
output: 'xxx', // 输出html文件路径
css: 'xxx', // 自定义输入样式路径
template: 'xxx', // 自定义输出文件的模板路径
title: 'xxx', // 自定义输入标题
})
Usage: gomd [options] <filePath>
Options:
-h, --help 输出使用指南
-v, --version 输出版本信息
-w, --watch 监听markdown文件变化
-c <cssPath> 自定义输入样式,此样式会覆盖默认生成的样式
-o <htmlPath> 自定义输出文件
-t <titleName> 自定义输出文件的标题
-T <templatePath> 自定义输出文件模板
直接将markdown文件转为html文件:
gomd ./my.md
监听markdown文件变化,同时指定自定义样式和自定义输出文件
gomd ./my.md -w -c ./my.css -o ./my.html
如果不指定输出文件的模板,则会使用内置模板生成html文件。你可以自定义模板,模板里会注入三个参数:title
、html
和css
,分别对应标题、html内容和样式内容。
模板采用tooltpl模板,语法可参考:https://github.com/JuneAndGreen/tooltpl。
MIT
FAQs
markdown previewer
We found that gomd demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.