1
0
mirror of https://github.com/twirl/The-API-Book.git synced 2025-04-17 11:06:25 +02:00
The-API-Book/build_html.js

9 lines
356 B
JavaScript
Raw Normal View History

2020-11-05 12:14:16 +03:00
const fs = require('fs');
const mdHtml = new (require('showdown').Converter)();
const md = fs.readFileSync('./src/API.ru.md', 'utf-8');
const html = `<html><head><meta charset="utf-8"/><title>Сергей Константинов. API</title></head>
<body><article>${mdHtml.makeHtml(md)}</article></body>
</html>`;
process.stdout.write(html);