MyBB Community Forums

Full Version: [SOLVED] Is inline quote possible with MyCode?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I mean
>
character. I just want it to be replaced with quote bbcode. Is it possible with MyCode?

This regexp works in sandbox, but doesn't work in posts:

\>(.*?)(\n|$)

UPD:

Solved with this regexp:

(\n|^)>(.*?)(\n|$)

This one does not work in sanbox, but works in posts;
Thanks, i solved my problem