this post was submitted on 04 Feb 2025
2 points (100.0% liked)

General Discussion

0 readers
1 users here now

A place to talk about whatever you want

founded 2 weeks ago
 

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 ?

top 3 comments
sorted by: hot top controversial new old
[–] việt-nguyễ[email protected] 1 points 12 hours ago
[–] [email protected] 1 points 1 day ago

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

@julian Can you help me ?