Markdown から日本企業っぽいメールに変換します。
https://maildown-example.netlify.com/
🤔
npm install @anydown/maildown
const maildown = require("@anydown/maildown");
const converted = maildown(`## test
# test
- this
- is
- test
`, {lineLength: 70});
console.log(converted);
//> ■test
//> 【test】
//> ・this
//> ・is
//> ・test
オプション名 | 説明 | デフォルト |
---|---|---|
lineLength | 1行の最大文字長 | 70 |
- Markdown to Plain : Chrome拡張 by @mtgto
- md2mail : VSCode拡張 by @satopirka