$obj = new Object();
print $obj->getThings();

Why not have the ability to linkify getThings() or Object() within the code block?

I realize this could be a pain to implement in Markdown, but maybe we can find a solution. Perhaps references at the end of the post like:

[1,11:8](http://api.url/Object)

Where 1,11 is the position of the word that needs to be linkified, and 8 - the length of the word.

share|improve this question
1  
What's wrong with linking them outside the code block? – animuson Jan 25 at 17:56
There's nothing wrong, but having links inside the code might improve user experience – One Trick Pony Jan 25 at 17:56

1 Answer

You can actually already do this if you really wanted to, although not many people expect to find links inside the code.

$obj = new Object();
print $obj->getThings();

I don't see a Markdown equivalent being useful, though.

share|improve this answer
3  
Whine whine syntax highlighting gone whine whine – Martijn Pieters Jan 25 at 17:58
can you also post instructions on how to achieve this? – One Trick Pony Jan 25 at 18:00
@OneTrickPony: meta.stackoverflow.com/revisions/… – animuson Jan 25 at 18:01
2  
Ah nice, now I know who to blame if this starts to spread..... :) – Bart Jan 25 at 18:04
I wouldn't use that, but I'd still like to have this feature – One Trick Pony Jan 25 at 18:07
You can blame @hammar. – sixlettervariables Jan 25 at 18:07

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged