Markdown open a new window link

Viewed 127655

I'm trying to edit a website which uses a modx cms, and it's using Markdown. Now I would like to open a new link into another window.

Is it possible?

The Link [Registration](http://www.registration.com)
5 Answers

It is very dependent of the engine that you use for generating html files. If you are using Hugo for generating htmls you have to write down like this:

<a href="https://example.com" target="_blank" rel="noopener"><span>Example Text</span> </a>.

You can edit the generated markup and add

target = "_blank"
Related