Tools

[Git] 마크다운(Markdown) 사용하기(1)

뱅타 2021. 8. 19. 22:03 💻 읽는시간 : 3 분

Header

this is a H1

this is a H2

this is a H3

h3부터는 언더라인이 없습니다.

####### H7은 지원하지 않습니다.

kotlin
# this is a H1
## this is a H2
### this is a H3

blockqute

this is a blockqute.

this sis a blockquet.

이렇게 계속해서 늘어날 수 있습니다.

kotlin
> this is a blockqute.
>> this is a blockqute.
>>> 이렇게 계속해서 늘어날 수 있습니다.

Numbers

  1. 이렇게
  2. 계속 늘어납니다.
  1. 특정 번호부터
  2. 계속 늘어납니다.
angelscript
1. 이렇게
2. 계속 늘어납니다.
101. 특정 번호부터
102. 계속 늘어납니다.

List

  • 이렇게 리스트 가능!
    • 플러스
      • 도 가능합니다.
      • 혹은 그냥 탭을 쓰셔도 되요.
    • alt+ tab이나요!
markdown
* 이렇게 리스트 가능!
+ 플러스
- 도 가능합니다.
- 혹은 그냥 탭을 쓰셔도 되요.
+ alt + tab이나요!

Code

Using Tab

this is a normal paragraph:

​ this is a code block.

end code block.

먹힌다는데 Typora에서 작성중인데 안먹히네요.

Using

arduino
public class BootSpringBootApplication{
public static void main(String[] args){
System.out.println("Hello, Honeymoon");
}
}

Using ```

arduino
```java
public class BootSpringBootApplication{
public static void main(String[] args){
System.out.println("Hello, Honeymoon");
}
}
```

수평선



asciidoc
***
---

링크

참조링크

Link: Tistory

markdown
[link keyword][id]
[id]: URL "Optional Title here"
// code
Link: [Tistory][tistorylink]
[Tistory]: https://jjam89.tistory.com "myBlog"

외부링크

Link: Github

markdown
사용문법: [Title](link)
적용예: [Github](https://github.com/KrGil?tab=repositories, "myGithub")

일반링크

Link: http://example.com/

E-mailLink: address@example.com

groovy
일반적인 URL 혹은 이메일주소인 경우 적절한 형식으로 링크를 형성한다.
* 외부링크: <http://example.com/>
* 이메일링크: <address@example.com>

강조

  • single asterisks
  • single underscores
  • double asterisks
  • double underscores
  • cancelline
markdown
*single asterisks*
_single underscores_
**double asterisks**
__double underscores__
~~cancelline~~

이미지

블로그이미지블로그이미지2

markdown
![Alt text](/path/to/img.jpg)
![Alt text](/path/to/img.jpg "Optional title")
markdown
![블로그이미지](https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2F94qX7%2Fbtrcs8mPtOd%2FsKzQGGyixaKpAKw2y2xpd1%2Fimg.png)
![블로그이미지2](https://blog.kakaocdn.net/dn/94qX7/btrcs8mPtOd/sKzQGGyixaKpAKw2y2xpd1/img.png)

크기 지정

블로그이미지3

 

routeros
<img src="/path/to/img.jpg" width="450px" height="300px" title="px(픽셀) 크기 설정" alt="RubberDuck"></img><br/>
<img src="/path/to/img.jpg" width="40%" height="30%" title="px(픽셀) 크기 설정" alt="RubberDuck"></img>

 

 

Refernces

https://gist.github.com/ihoneymon/652be052a0727ad59601

728x90
반응형