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
- 이렇게
- 계속 늘어납니다.
- 특정 번호부터
- 계속 늘어납니다.
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~~
이미지
markdown
 
markdown
 
크기 지정
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
728x90
반응형
'Tools' 카테고리의 다른 글
[Git] git command 정리. (0) | 2021.09.29 |
---|---|
[Git]git init 과 git init --bare (0) | 2021.09.14 |
[Windows] IIS로 "Hello World" 띄우기(test1.aspx) (0) | 2021.08.19 |
[Docker] Docker 컴포넌트 (0) | 2021.08.19 |
[Windows] IIS(Internet Information Services) 기본개념과 설치 및 실행 (0) | 2021.08.19 |