MyBB Community Forums

Full Version: mycode without closing tag
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to make MyCode to show some pictures but that MyCode tag does not close, but that is just [images]?
Maybe you could make it a hidden smily?
Yes just do /[images/] and it works.
perhaps [image=<content here>]
(2010-02-13, 10:34 AM)laeresh Wrote: [ -> ]perhaps [image=<content here>]

Should be
/[image/=$1/]
Backslashes, and a regex in that bit, not $1.

Regular expression:

\[image=(.*?)\]

Replacement:

<img src="$1" alt="" />
(2010-02-13, 01:23 PM)Tierney Wrote: [ -> ]
(2010-02-13, 10:34 AM)laeresh Wrote: [ -> ]perhaps [image=<content here>]

Should be
/[image/=$1/]

I ment i regular speak, not code Big Grin