mirror of
https://github.com/twirl/The-API-Book.git
synced 2025-04-17 11:06:25 +02:00
9 lines
356 B
JavaScript
9 lines
356 B
JavaScript
|
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);
|