[MyLab]마크다운 문법활용
1. Header & Sub-Header
※Syntax
# This is H1 Header
## This is H2 Header
### This is H3 Header
#### This is H4 Header
##### This is H5 Header
###### This is H6 Header
※Result
This is H1 Header
This is H2 Header
This is H3 Header
This is H4 Hedaer
This is H5 Header
This is H6 Headr
2. Sub-Header & Under-Line
※Syntax
THis is Sub-Header
---
<u>THis is Under-Line</u>
※Result
THis is Sub-Header
THis is Sub-Header
3. Links
※Syntax
Link: [구글로 이동](https://www.google.com/webhp?hl=ko&sa=X&ved=0ahUKEwjO18XOw7KDAxUWgFYBHa3-BuwQPAgJ )
※Result
Link: 구글로 이동
4.BlockQuote
※Syntax
> 이것은 BlockQuote 입니다.
> 이것은 BlockQuote 입니다.
> 이것은 BlockQuote 입니다.
> 이것은 BlockQuote 입니다.
> 이것은 BlockQuote 입니다.
> 이것은 BlockQuote 입니다.
> 이것은 BlockQuote 입니다.
> 이것은 BlockQuote 입니다.
> 이것은 BlockQuote 입니다.
※Result
이것은 BlockQuote 입니다. 이것은 BlockQuote 입니다.
이것은 BlockQuote 입니다.
이것은 BlockQuote 입니다.
이것은 BlockQuote 입니다.
이것은 BlockQuote 입니다.
이것은 BlockQuote 입니다.
이것은 BlockQuote 입니다.
이것은 BlockQuote 입니다.
5.Ordered List
※Syntax
1.ordered list
2.ordered list
3.ordered list
※Result
- ordered list
- ordered list
- ordered list
6.Unordered List
※Syntax
*unordered List
*unordered List
*unordered List
*unordered List
*unordered List
*unordered List
※Result
- unordered List
- unordered List
- unordered List
- unordered List
- unordered List
- unordered List
7.Code Block
※Syntax
<pre>
<code>이곳에 코드를 삽입</code>
코드블락을 닫은 후</pre>
※Result
이곳에 코드를 삽입
코드블락을 닫은 후
8.Syntax-Highlight
«««< HEAD
Case(1)-Python
=======
Case(1)-Python
update
※Syntax
``` python
# This program adds up integers in the command line
import sys
try:
total = sum(int(arg) for arg in sys.argv[1:])
print 'sum =', total
except ValueError:
print 'Please supply integer arguments'
```
※Result
# This program adds up integers in the command line
import sys
try:
total = sum(int(arg) for arg in sys.argv[1:])
print 'sum =', total
except ValueError:
print 'Please supply integer arguments'
Case(2)-C/C++
※Syntax
```c
int str_equals(char *equal1, char *eqaul2)
{
while(*equal1==*eqaul2)
{
if ( *equal1 == '\0' || *eqaul2 == '\0' ){break;}
equal1++;
eqaul2++;
}
if(*eqaul1 == '\0' && *eqaul2 == '\0' ){return 0;}
else {return -1};
}
```
※Result
int str_equals(char *equal1, char *eqaul2)
{
while(*equal1==*eqaul2)
{
if ( *equal1 == '\0' || *eqaul2 == '\0' ){break;}
equal1++;
eqaul2++;
}
if(*eqaul1 == '\0' && *eqaul2 == '\0' ){return 0;}
else {return -1};
}
8.Strikethrough
※Syntax
~~ 이것은 취소선 입니다. ~~
※Result
~~ 이것은 취소선 입니다. ~~
9.Insert Image
Typora에서 [파일]>[환경설정]>[이미지]탭>
다음과 같이 "사용자 정의 폴터로 이미지 복사"를 선택한 후 해당 경로 설정
실제로 이미지를 적용하려면 아래와 같이 상대경로로 잡아주어야 한다.(Typora에디터를 써주면 자동으로 경로설정을 해준다)
![image-removebg-preview (1)](https://JackSmith-c.github.io//images/2023-12-27-mysyntax/image-removebg-preview (1).png)
결과>
참고로 이분은 MNIST데이터셋과 Lenet이라고 하는 CNN의 초기모델을 만드신 “얀르쿤”님이시다.
10. table-settings
| 삼중자 | 문장 분호 문자 |
| :----: | :------------: |
| ??= | # |
| ??/ | \ |
| ??( | [ |
| ??) | ] |
| ??' | ^ |
| ??< | { |
| ??> | } |
| ??! | \| |
| ??- | ~ |
위 코드는 테이블을 구현할 수 있는 마크다운 문법이다. 하지만 마크다운에서는 테이블 속 문자요소들만 중앙정렬이 가능하고, 테이블 자체에 대한 중앙배치는 불가능 하다. 따라서, 조금 복잡하지만 html문법을 써서 테이블을 만드는 것을 권장한다.
<table style="border:1px; margin: 0px 50%;" align="center">
<thead>
<tr>
<th style="text-align: center">삼중자</th>
<th style="text-align: center">문장 분호 문자</th>
</tr>
</thead>
<tr>
<td style="text-align: center">??=</td>
<td style="text-align: center">#</td>
</tr>
<tr>
<td style="text-align: center">??/</td>
<td style="text-align: center">\</td>
</tr>
<tr>
<td style="text-align: center">??(</td>
<td style="text-align: center">[</td>
</tr>
<tr>
<td style="text-align: center">??)</td>
<td style="text-align: center">]</td>
</tr>
<tr>
<td style="text-align: center">??'</td>
<td style="text-align: center">^</td>
</tr>
<tr>
<td style="text-align: center">??<</td>
<td style="text-align: center">{</td>
</tr>
<tr>
<td style="text-align: center">??></td>
<td style="text-align: center">}</td>
</tr>
<tr>
<td style="text-align: center">??!</td>
<td style="text-align: center">\|</td>
</tr>
<tr>
<td style="text-align: center">??-</td>
<td style="text-align: center">~</td>
</tr>
</table>
실제로 보이는 결과>
삼중자 | 문장 분호 문자 |
---|---|
??= | # |
??/ | \ |
??( | [ |
??) | ] |
??' | ^ |
??< | { |
??> | } |
??! | \| |
??- | ~ |
댓글남기기