Can I create links with 'target="_blank"' in Markdown? #2280
Answered
by
pdehaan
phannhat17
asked this question in
Q&A
-
I've try to use html like
|
Beta Was this translation helpful? Give feedback.
Answered by
pdehaan
Mar 20, 2022
Replies: 2 comments 2 replies
-
How did it not work? MD should let you enter any HTML you want. I do think if you tab it over it may escape it as code, but if you didn't, it should just work. Maybe share the entire template? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Worked for me in a simple test case ([email protected], macOS): ---
title: 2280
---
# {{ title }}
<a href="http://example.com/" target="_blank">Hello, world!</a>
- bulleted
- list OUTPUT<h1>2280</h1>
<p><a href="http://example.com/" target="_blank">Hello, world!</a></p>
<ul>
<li>bulleted</li>
<li>list</li>
</ul> |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
phannhat17
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Worked for me in a simple test case ([email protected], macOS):
OUTPUT