03-13-2011, 05:30 PM
MyBB is the only forum software that uses [align] MyCode rather than the common [left] [center] [right] BbCodes. Can we add support for both? It'll be an easy fix. I haven't tested this code but it looks like it'll work:
Regular Expression:
Replacement:
Regular Expression:
Code:
\[(left|center|right)\](.*?)\[/\1\]
Replacement:
Code:
<div style="text-align: $1;">$2</div>