So I can later use a function to convert it to html?
I have access to a file as well, so if there is a command line tool that does this, and I can import it from shell or python or node that would be great.
Am I correctly assuming that below Remarkable will do the job if I’m able to get raw data?
(Sample code:
const { Remarkable } = require(‘remarkable’);
let md = new Remarkable();
function constructHtml(req) {
let text = md.render(req);
let response = {
value: text
}
return response
};
I’m getting below when I do get url from python which tells me I’m doing it wrong.