2009-08-15, 06:41 AM
Well, I'm all for styling posts, and this Jump Code can be used alongside the CSS code to create things like this in posts:
http://www.pokecommunity.com/showthread.php?t=188006 (Just look at the quick jump box)
So, here's how you make the links jump like that.
We'll be creating two MyCodes, so one after the other.
Start a new code,
Put this in regular expression:
And this in Replacement:
There's our first code. Now for our second.
Put this in regular expression:
And put this in Replacement:
Now, in your post, you can use them like this:
Hope some of you guys liked this.
http://www.pokecommunity.com/showthread.php?t=188006 (Just look at the quick jump box)
So, here's how you make the links jump like that.
We'll be creating two MyCodes, so one after the other.
Start a new code,
Put this in regular expression:
\[a-id=(.*?)\](.*?)\[/a-id\]
And this in Replacement:
<a href="#$1">$2</a>
There's our first code. Now for our second.
Put this in regular expression:
\[a-name=(.*?)\](.*?)\[/a-name\]
And put this in Replacement:
<a name="$1">$2</a>
Now, in your post, you can use them like this:
[a-id=Jump]Click this to jump.[/a-id]
[a-name=Jump]This is where you end up.[/a-name]
Hope some of you guys liked this.