Compare commits

...

1 Commits

Author SHA1 Message Date
Nick Stokoe
d78b403dff unpack-whenwe-json.js - convert html to markdown 2022-12-27 18:16:27 +00:00
2 changed files with 7 additions and 2 deletions

View File

@@ -7,5 +7,8 @@
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
"license": "ISC",
"dependencies": {
"node-html-markdown": "^1.3.0"
}
}

View File

@@ -1,10 +1,12 @@
const data = require('./whenwe.json');
const fs = require('fs');
const path = require('path');
const { NodeHtmlMarkdown, NodeHtmlMarkdownOptions } = require('node-html-markdown');
const nhm = new NodeHtmlMarkdown();
function toYaml(data, body) {
const frontmatter = Object.keys(data).sort().map(key => key+': '+(data[key] ?? '')).join("\n");
return frontmatter + "\n---\n" + body;
return frontmatter + "\n---\n" + nhm.translate(body);
}
function date(datestr) {