CSCI-4830-002-2014 / mailinglist

A special repository to act like a mailing list, for announcement, general discussion, etc. Assignment-specific issues should still go to the individual repository.
2 stars 0 forks source link

Open links in new tab #2

Closed ianks closed 9 years ago

ianks commented 9 years ago

Is it possible to set it up so that in future challenges links will open in new tabs by default?

For example for the Gauss link on week 4 it can be:

<a href="https://github.com/wayoutmind/gauss" target="_blank">gauss</a>

Instead of:

<a href="https://github.com/wayoutmind/gauss">gauss</a>

wannabeCitizen commented 9 years ago

The issue here is that it's being rendered from markdown which does not support this feature. Markdown saves us a lot of time instead of writing heavy HTML.

If you know of a way to style markdown to enable this functionality (say w/ CSS or JS), tell us and we'll implement it.

Sorry! You may have to stick to the good ol' fashion right-click and select 'open in new window'

On Sat, Sep 27, 2014 at 3:22 PM, Ian Ker-Seymer notifications@github.com wrote:

Is it possible to set it up so that in future challenges links will open in new tabs by default?

For example for the Gauss https://github.com/wayoutmind/gauss link on week 4 it can be:

gauss

Instead of:

gauss

— Reply to this email directly or view it on GitHub https://github.com/CSCI-4830-002-2014/mailinglist/issues/2.

ianks commented 9 years ago

It's all good, just thought I would drop a suggestion but it seems like you have already thought of it!