MyBB Community Forums

Full Version: Jump To
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
For this to work you need to make two MyCodes


First MyCode

Title:
Quote:Area

Description:
Quote:Linking to #MyArea will jump to where [postarea=MyArea] is on the post.

Regular Expression:
\[postarea=(.*?)\]

HTML Replacement:
<a name="$1" />

Useage in MyCode:
[postarea=examplemycode]MyCode Exmaples:

Output in HTML:
<a name="examplemycode" />MyCode Examples:

Output in Plain Text:
MyCode Examples:


Second MyCode

Title:
Quote:Jump to
Description:
Quote:Jumps to a place on the page

Regular Expression:
\[jumpto=(.*?)\](.*?)\[/jumpto\]

HTML Replacement:
<a href="#$1">$2</a>

Useage in MyCode:
[jumpto=examplemycode]MyCode examples[/jumpto]

Output in HTML:
<a href="#examplemycode" />MyCode Examples</a>

Output in Plain Text:
MyCode Examples
Updated