Topic: WYSIWYG editor in posts?

Hello, I love PunBB, so fast and lightweight
However, it is possible to have plugins / mods for implementing a WYSIWYG editor?

Thanks.

Re: WYSIWYG editor in posts?

The search gives this result:
https://punbb.informer.com/forums/topic … -sceditor/
https://punbb.informer.com/forums/topic … -to-punbb/
https://punbb.informer.com/forums/topic … g-tinymce/
https://punbb.informer.com/forums/topic … unbb-1214/

ForkBB
I speak only Russian  :P

3 (edited by Hergé 2026-02-19 23:46)

Re: WYSIWYG editor in posts?

Hi,

Just to add a bit of context — PunBB was originally designed to stay minimal and lightweight, which is why it ships with plain text + BBCode by default.

Technically, integrating a WYSIWYG editor (like SCEditor or TinyMCE) is possible, but it usually requires:

Overriding the textarea in post.php

Making sure the editor outputs clean BBCode (not raw HTML)

Handling proper sanitization to avoid security issues

Most historical implementations wrapped a BBCode-aware editor rather than enabling full HTML editing, to preserve PunBB’s simplicity and safety model.

If you’re open to forks, some modern variants (e.g., ForkBB) have more flexibility and might make this easier.

That said, adding a full WYSIWYG editor slightly goes against the “lightweight” philosophy of PunBB — so it depends whether you prioritize usability or minimalism