Links
Peponi │ 10/30/2024 │ 2m
Markdown
Syntax<a>Hyperlink
Links
Peponi
Markdown
Syntax<a>Hyperlink
1. Introduction
글에 링크를 다는 기능으로 [링크 이름](링크 주소)
형식으로 작성한다.
2. Example
Markdown | Render |
---|
[Github](https://github.com)
| Github |
[네이버](https://naver.com "툴팁")
| 네이버 |
<!-- 링크 강조 -->
*[Italic link](https://markdownguide.org)*
| Italic link |
<!-- 다이렉트 링크 (이메일 또는 URL) -->
<https://microsoft.com>
| https://microsoft.com |
<!-- 내부 링크 -->
[1. Introduction](#1-introduction)
| 1. Introduction |
<!-- 참조 링크 -->
[참조링크][1]
<!-- 주소 삽입. 페이지에서는 안보임 -->
[1]: https://google.com "Google"
| 참조링크 |
3. Link Target
Markdown
의 경우 새 창에서 열기 같은 링크 기능을 제공하지 않는다. 필요한 경우 직접 <a>
태그를 삽입한다.
HTML | Render |
---|
<a href="https://google.com" target="_blank">Google</a>
| Google |
4. 참조 자료