Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to create a link in markdown that opens in a new window? If not, what syntax do you recommend to do this. I'll add it to the markdown compiler I use. I think it should be an option.

share|improve this question

4 Answers

up vote 35 down vote accepted

As far as the Markdown syntax is concerned, if you want to get that detailed, you'll just have to use HTML.

<a href="http://example.com/" target="_blank">Hello, world!</a>

Most Markdown engines I've seen allow plain old HTML, just for situations like this where a generic text markup system just won't cut it. (The StackOverflow engine, for example.) They then run the entire output through an HTML whitelist filter, regardless, since even a Markdown-only document can easily contain XSS attacks. As such, if you or your users want to create _blank links, then they probably still can.

If that's a feature you're going to be using often, it might make sense to create your own syntax, but it's generally not a vital feature. If I want to launch that link in a new window, I'll ctrl-click it myself, thanks.

share|improve this answer
7  
Ya know what? I agree with you and alex. I decided not to use _blank at all. It's a better user experience to keep things in one browser. They can just hit back or command-click (Mac user here :)), like you say. – MattDiPasquale Jan 16 '11 at 17:01

I don't think there is.

I also don't think it is a necessary feature. Usability guru Jakob Nielson says:

Opening up new browser windows is like a vacuum cleaner sales person who starts a visit by emptying an ash tray on the customer's carpet. Don't pollute my screen with any more windows, thanks (particularly since current operating systems have miserable window management). If I want a new window, I will open it myself!

Though there may be other options available if you want to open links which point outside your own site.

var links = document.links;

for (var i = 0, linksLength = links.length; i < linksLength; i++) {
   if (links[i].hostname != window.location.hostname) {
       links[i].target = '_blank';
   } 
}

jsFiddle.

If you're using jQuery it's a tad simpler...

$(document.links).filter(function() {
    return this.hostname != window.location.hostname;
}).attr('target', '_blank');

jsFiddle.

share|improve this answer
i agree with you but on the occasion that you are in an iframe you need to blast out of the frame with the link. – David Morrow Nov 3 '11 at 18:31
I find the only time I force people into a new window is when I'm halfway through a sentence linking somewhere external, and I want to provide sources for my comments without interrupting the flow. This js snippet is ideal for the purpose - thanks, upvoted :) – tehwalrus Jun 17 '12 at 16:20

Kramdown supports it. It's compatibile with standard Markdown syntax, but has many extensions too. You would use it like this:

[link](url){:target="_blank"}
share|improve this answer
This does not seem to work using the Markdown engine on Mac :-( – Netsi1964 Mar 24 at 10:12
Kramdown – farnoy Mar 24 at 16:54

if you are using Jquery you can easily fix it

$('a').attr('target','_blank');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.