I converted content using this
Sockets.renderPreview = async function (socket, content) {
return await plugins.hooks.fire('filter:parse.raw', content);
};
How to convert to raw data like initial ?
You must log in or register to comment.
@julian Can you help me ?
Sounds like you want to convert html back to markdown, NodeBB doesn’t provide any builtin function for this. You will need to use something like https://github.com/mixmark-io/turndown
@baris Thank you !!