<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Davelogs</title>
        <link>https://velog.io/</link>
        <description>It's okay to pause. You may even come back stronger.</description>
        <lastBuildDate>Thu, 22 Apr 2021 04:21:40 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <image>
            <title>Davelogs</title>
            <url>https://images.velog.io/images/_dave/profile/7d66ad44-10a0-4ad9-bbb9-295162af014b/social.jpeg</url>
            <link>https://velog.io/</link>
        </image>
        <copyright>Copyright (C) 2019. Davelogs. All rights reserved.</copyright>
        <atom:link href="https://v2.velog.io/rss/_dave" rel="self" type="application/rss+xml"/>
        <item>
            <title><![CDATA[마크다운(Markdown) 가이드]]></title>
            <link>https://velog.io/@_dave/Awesome-Markdown-Guide</link>
            <guid>https://velog.io/@_dave/Awesome-Markdown-Guide</guid>
            <pubDate>Thu, 22 Apr 2021 04:21:40 GMT</pubDate>
            <description><![CDATA[<h1 id="awesome-markdown-guide">Awesome Markdown Guide</h1>
<p><img src="https://images.velog.io/images/_dave/post/ccb85398-6935-4977-b1e8-a8741835fca9/0001.jpg" alt="Awesome markdown guide"></p>
<p>Photo by <a href="https://pixabay.com/photos/code-code-editor-coding-computer-1839406/">Pexels</a> on <a href="https://pixabay.com">Pixabay</a></p>
<h2 id="what-is-markdown">What is Markdown?</h2>
<ul>
<li>마크다운은 웹에서 스타일을 지정하는 방법 중 하나이다.</li>
<li>문서 표시를 제어할 수 있다.<ul>
<li>단어를 굵게(Bold) 또는 기울임꼴(Italic)로 표시하거나,</li>
<li>이미지를 추가하고,</li>
<li>목록을 만드는 일을 할 수 있다.</li>
</ul>
</li>
<li>GitHub에서는 <ul>
<li>Repository의 README 문서를 작성하거나,</li>
<li><a href="https://gist.github.com/">Gist</a>를 생성하고,</li>
<li><code>.md</code> 또는 <code>.markdown</code> 을 확장자로 갖는 문서를 작성한다.  </li>
</ul>
</li>
</ul>
<h2 id="basic-syntax">Basic Syntax</h2>
<h3 id="제목-headings">제목 (Headings)</h3>
<pre><code># Heading level 1
## Heading level 2
###### Heading level 6</code></pre><blockquote>
<h1 id="heading-level-1">Heading level 1</h1>
<h2 id="heading-level-2">Heading level 2</h2>
<h6 id="heading-level-6">Heading level 6</h6>
</blockquote>
<h4 id="alternate-syntax">Alternate Syntax</h4>
<pre><code>Heading level 1
===============</code></pre><blockquote>
<h1 id="heading-level-1-1">Heading level 1</h1>
</blockquote>
<pre><code>Heading level 2
---------------</code></pre><blockquote>
<h2 id="heading-level-2-1">Heading level 2</h2>
</blockquote>
<h3 id="강조-emphasis">강조 (Emphasis)</h3>
<pre><code>*This text will be italic*
_This will also be italic_</code></pre><blockquote>
<p><em>This text will be italic</em></p>
<p><em>This will also be italic</em></p>
</blockquote>
<pre><code>**This text will be bold**
__This will also be bold__</code></pre><blockquote>
<p><strong>This text will be bold</strong></p>
<p><strong>This will also be bold</strong></p>
</blockquote>
<pre><code>_You **can** combine them_</code></pre><blockquote>
<p><em>You <strong>can</strong> combine them</em></p>
</blockquote>
<h3 id="취소선-strikethrough">취소선 (Strikethrough)</h3>
<pre><code>~~This text will have a strikethrough~~</code></pre><blockquote>
<p><del>This text will have a strikethrough</del></p>
</blockquote>
<h3 id="목록-lists">목록 (Lists)</h3>
<h4 id="순서-없는-목록-unordered-글머리-기호">순서 없는 목록 (Unordered, 글머리 기호)</h4>
<pre><code>* Item 1
   * Item 1-1
   * Item 1-2
      * Item 1-2-1
- Item 2
+ Item 3</code></pre><blockquote>
<ul>
<li>Item 1<ul>
<li>Item 1-1</li>
<li>Item 1-2<ul>
<li>Item 1-3</li>
</ul>
</li>
</ul>
</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
</blockquote>
<pre><code>* Step 1
   - Step 1-1
      + Step 1-1-1</code></pre><blockquote>
<ul>
<li>Step 1<ul>
<li>Step 1-1<ul>
<li>Step 1-1-1</li>
</ul>
</li>
</ul>
</li>
</ul>
</blockquote>
<p>Note.</p>
<ul>
<li>글머리 기호를 혼용해서 사용할 수도 있다.</li>
</ul>
<h4 id="순서-있는-목록-ordered-번호">순서 있는 목록 (Ordered, 번호)</h4>
<pre><code>1. First
1. Second
2. Third</code></pre><blockquote>
<ol>
<li>First</li>
<li>Second</li>
<li>Third</li>
</ol>
</blockquote>
<p>Note.</p>
<ul>
<li>입력하는 숫자에 관계없이 오름차순으로 배정된다.</li>
</ul>
<h4 id="작업-목록-tasks">작업 목록 (Tasks)</h4>
<pre><code>[x] This is a complete item
[ ] This is an incomplete item</code></pre><blockquote>
<p>[x] This is a complete item</p>
<p>[ ] This is an incomplete item</p>
</blockquote>
<p>Note.</p>
<ul>
<li>제대로 동작하는 것인지 잘 모르겠음</li>
</ul>
<h3 id="인용-blockquotes">인용 (Blockquotes)</h3>
<pre><code>&gt; This is blockquote
&gt;
&gt; &gt; This is nested blockquote</code></pre><blockquote>
<blockquote>
<p>This is blockquote</p>
<blockquote>
<p>This is nested blockquote</p>
</blockquote>
</blockquote>
</blockquote>
<pre><code>&gt; Blockquotes can contain other Markdown formatted elements.
&gt;
&gt; #### Heading
&gt;
&gt; - unordered list
&gt; 1. ordered list
&gt;
&gt; *Not all elements can be used* - **you&#39;ll need to experiment to see which ones work.**</code></pre><blockquote>
<blockquote>
<p>Blockquotes can contain other Markdown formatted elements.</p>
<h4 id="heading">Heading</h4>
<ul>
<li>unordered list</li>
</ul>
<ol>
<li>ordered list</li>
</ol>
<p><em>Not all elements can be used</em> - <strong>you&#39;ll need to experiment to see which ones work.</strong></p>
</blockquote>
</blockquote>
<h3 id="이미지-images">이미지 (Images)</h3>
<pre><code>![Sample image](images/0002.jpg)
Format: ![Alt Text](url)</code></pre><blockquote>
<p><img src="https://images.velog.io/images/_dave/post/240860bc-bb72-43f1-b3c8-8785ad7f3376/0002.jpg" alt="Sample image"></p>
<p>Photo by <a href="https://unsplash.com/@jorisv?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Joris Visser</a> on <a href="https://unsplash.com/s/photos/cafe?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Unsplash</a></p>
</blockquote>
<p>Note.</p>
<ul>
<li>캡션, 사이즈 조절은 지원하지 않음.</li>
<li>필요한 경우 HTML 태그로 처리.</li>
</ul>
<h3 id="링크-links">링크 (Links)</h3>
<pre><code>[DaveLogs](http://davelogs.tistory.com)
Format: [Link Text](url)

http://davelogs.tistory.com - automatic!</code></pre><blockquote>
<p><a href="http://davelogs.tistory.com">DaveLogs</a></p>
<p><a href="http://davelogs.tistory.com">http://davelogs.tistory.com</a> - automatic!</p>
</blockquote>
<h3 id="인라인-코드-inline-code">인라인 코드 (Inline code)</h3>
<pre><code>You should write a `README.md` in GitHub.</code></pre><blockquote>
<p>You should write a <code>README.md</code> in GitHub.</p>
</blockquote>
<h3 id="이모티콘-emoji">이모티콘 (Emoji)</h3>
<pre><code>Wow! Awesome!! :clap: :+1: :sunglasses:</code></pre><blockquote>
<p>Wow! Awesome!! :clap: :+1: :sunglasses:</p>
</blockquote>
<p>Note.</p>
<ul>
<li><a href="https://www.webfx.com/tools/emoji-cheat-sheet/">Emoji cheat sheet</a></li>
</ul>
<h3 id="수평선-horizontal-line">수평선 (Horizontal line)</h3>
<pre><code>Here
--- (dashes)
*** (asterisks)
___ (underscores)
There</code></pre><blockquote>
<p>Here</p>
<hr>
<hr>
<hr>
<p>There</p>
</blockquote>
<p>Note.</p>
<ul>
<li>3개 이상의 하이픈(<code>-</code>), 아스테리스트(<code>*</code>) 또는 언더스코어(<code>_</code>)를 이용해 수평선 적용</li>
<li>문단이나 세션, 페이지 등을 나눌 때 사용</li>
</ul>
<h2 id="extended-syntax">Extended Syntax</h2>
<h3 id="테이블-tables">테이블 (Tables)</h3>
<pre><code>(row, col) | column 1 | column 2 | column 3
---------- | -------- | -------- | --------
row 1      | (1, 1)   | (1, 2)   | (1, 3)
row 2      | (2, 1)   | (2, 2)   | (2, 3)
row 3      | (3, 1)   | (3, 2)   | (3, 3)</code></pre><blockquote>
<table>
<thead>
<tr>
<th>(row, col)</th>
<th>column 1</th>
<th>column 2</th>
<th>column 3</th>
</tr>
</thead>
<tbody><tr>
<td>row 1</td>
<td>(1, 1)</td>
<td>(1, 2)</td>
<td>(1, 3)</td>
</tr>
<tr>
<td>row 2</td>
<td>(2, 1)</td>
<td>(2, 2)</td>
<td>(2, 3)</td>
</tr>
<tr>
<td>row 3</td>
<td>(3, 1)</td>
<td>(3, 2)</td>
<td>(3, 3)</td>
</tr>
</tbody></table>
</blockquote>
<h4 id="alignment">Alignment</h4>
<pre><code>Syntax    | Description | Test Text
:-------- | :---------: | ----------:
Left      | Center      | Right
This      | is          | the alignment</code></pre><blockquote>
<table>
<thead>
<tr>
<th align="left">Syntax</th>
<th align="center">Description</th>
<th align="right">Test Text</th>
</tr>
</thead>
<tbody><tr>
<td align="left">Left</td>
<td align="center">Center</td>
<td align="right">Right</td>
</tr>
<tr>
<td align="left">This</td>
<td align="center">is</td>
<td align="right">the alignment</td>
</tr>
</tbody></table>
</blockquote>
<p>Note.</p>
<ul>
<li>하이픈(<code>-</code>)과 파이프(<code>|</code>)를 이용해 표를 테이블을 구성</li>
<li>3개 이상의 하이픈(<code>-</code>)으로 첫번째 행으로 지정</li>
<li>콜론(<code>:</code>)과 하이픈(<code>-</code>)을 이용해 열(column)의 정렬 방법 설정</li>
</ul>
<h3 id="코드블록-fenced-code-blocks">코드블록 (Fenced Code Blocks)</h3>
<pre><code>​```
$ sudo apt-get update
​```</code></pre><blockquote>
<pre><code>$ sudo apt-get update</code></pre></blockquote>
<h4 id="syntax-highlighting">Syntax highlighting</h4>
<pre><code>​```javascript
function fancyAlert(arg) {
   if(arg) {
      $.facebox({div:&#39;#foo&#39;})
   }
}
​```</code></pre><blockquote>
<pre><code class="language-javascript">function fancyAlert(arg) {
   if(arg) {
      $.facebox({div:&#39;#foo&#39;})
   }
}</code></pre>
</blockquote>
<pre><code>​```python
def validate(arg):
   if arg is None:
      return False
   return True
​```</code></pre><blockquote>
<pre><code class="language-python">def validate(arg):
   if arg is None:
      return False
   return True</code></pre>
</blockquote>
<pre><code>​```json
{
  &quot;firstName&quot;: &quot;John&quot;,
  &quot;lastName&quot;: &quot;Smith&quot;,
  &quot;age&quot;: 25
}
​```</code></pre><blockquote>
<pre><code class="language-json">{
  &quot;firstName&quot;: &quot;John&quot;,
  &quot;lastName&quot;: &quot;Smith&quot;,
  &quot;age&quot;: 25
}</code></pre>
</blockquote>
<h2 id="참고">참고</h2>
<ul>
<li><a href="https://guides.github.com/features/mastering-markdown/">Mastering Markdown</a></li>
<li><a href="https://www.markdownguide.org/getting-started/">Getting Started | Markdown Guide</a></li>
<li><a href="https://gist.github.com/ihoneymon/652be052a0727ad59601">마크다운 사용법</a></li>
<li><a href="https://blog.kim1jun.xyz/5">마크다운(Markdown) 정리</a></li>
</ul>
]]></description>
        </item>
    </channel>
</rss>