<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Jun's.log</title>
        <link>https://velog.io/</link>
        <description></description>
        <lastBuildDate>Mon, 13 Sep 2021 11:26:26 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <image>
            <title>Jun's.log</title>
            <url>https://images.velog.io/images/j-junshim/profile/bf7e1b5d-9500-49a0-bcb4-abddce19cf94/social.jpeg</url>
            <link>https://velog.io/</link>
        </image>
        <copyright>Copyright (C) 2019. Jun's.log. All rights reserved.</copyright>
        <atom:link href="https://v2.velog.io/rss/j-junshim" rel="self" type="application/rss+xml"/>
        <item>
            <title><![CDATA[[Markdown] 작성 기본문법]]></title>
            <link>https://velog.io/@j-junshim/Markdown-%EC%9E%91%EC%84%B1-%EA%B8%B0%EB%B3%B8%EB%AC%B8%EB%B2%95</link>
            <guid>https://velog.io/@j-junshim/Markdown-%EC%9E%91%EC%84%B1-%EA%B8%B0%EB%B3%B8%EB%AC%B8%EB%B2%95</guid>
            <pubDate>Mon, 13 Sep 2021 11:26:26 GMT</pubDate>
            <description><![CDATA[<h1 id="markdown"><a href="#reference">Markdown</a></h1>
<p><img src="https://commonmark.org/help/images/favicon.png" alt="md"></p>
<blockquote>
<p>It’s a plain text format for writing structured documents, based on formatting conventions from email and usenet.</p>
</blockquote>
<hr>
<h2 id="tutorial">Tutorial</h2>
<blockquote>
<p><strong>Markdown</strong> is a simple way to format text that looks great on any device. It doesn’t do anything fancy like change the font size, color, or type — just the essentials, using keyboard symbols you already know.</p>
</blockquote>
<hr>
<h3 id="heading">Heading</h3>
<p>Markdown은 제목부터 시작된다. Heading을 의미하는 <code>#</code> 문자 뒤 1번의 공백 후 제목을 작성한다. Heading 요소는 상하 공백의 줄을 요구한다.</p>
<h4 id="heading-1">Heading 1</h4>
<blockquote>
<h1 id="h1">H1</h1>
</blockquote>
<pre><code># H1

H1
=</code></pre><h4 id="heading-2">Heading 2</h4>
<blockquote>
<h2 id="h2">H2</h2>
</blockquote>
<pre><code>## H2

H2
-</code></pre><p>...</p>
<h4 id="heading-6">Heading 6</h4>
<blockquote>
<h6 id="h6">H6</h6>
</blockquote>
<pre><code>###### H6</code></pre><hr>
<h3 id="text">Text</h3>
<p>문단과 줄바꿈은 별도의 문자요소없이 이루어진다.</p>
<h4 id="paragraphs">Paragraphs</h4>
<blockquote>
<p>I really like using Markdown.</p>
</blockquote>
<p>I think I&#39;ll use it to format all of my documents from now on.</p>
<pre><code>I really like using Markdown.

I think I&#39;ll use it to format all of my documents from now on.</code></pre><h4 id="line-breaks">Line Breaks</h4>
<blockquote>
<p>This is the first line.<br>And this is the second line.</p>
</blockquote>
<pre><code>This is the first line.  
And this is the second line.</code></pre><hr>
<h3 id="emphasis">Emphasis</h3>
<p>강조하는 부분은 글 앞뒤에 <code>*</code> 혹은 <code>_</code>로 가능하지만 호환성을 이유로 <code>*</code>을 사용하는 것을 권장하고 있다. </p>
<h4 id="bold">Bold</h4>
<blockquote>
<p>I just love <strong>bold text</strong>.</p>
</blockquote>
<pre><code>I just love **bold text**.

I just love __bold text__.</code></pre><h4 id="italic">Italic</h4>
<blockquote>
<p>Italicized text is the <em>cat&#39;s meow</em>.</p>
</blockquote>
<pre><code>Italicized text is the *cat&#39;s meow*.

Italicized text is the _cat&#39;s meow_.</code></pre><h4 id="bold-and-italic">Bold and Italic</h4>
<blockquote>
<p>This text is <strong><em>really important</em></strong>.</p>
</blockquote>
<pre><code>This text is ***really important***.

This text is ___really important___.

This text is __*really important*__.

This text is **_really important_**.</code></pre><hr>
<h3 id="blockquote">Blockquote</h3>
<p>인용 속에서 Markdown의 다른 요소 모두 사용 가능하다.</p>
<blockquote>
<blockquote>
<h4 id="the-quarterly-results-look-great">The quarterly results look great!</h4>
</blockquote>
<p>Dorothy followed her through many of the beautiful rooms in her castle.</p>
<blockquote>
<blockquote>
<p>The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.</p>
</blockquote>
</blockquote>
</blockquote>
<pre><code>&gt; #### The quarterly results look great!
&gt;
&gt; Dorothy followed her through many of the beautiful rooms in her castle.
&gt;&gt; The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.</code></pre><hr>
<h3 id="list">List</h3>
<p>비순차 목록과 순차 목록이 있다. 목록을 의미하는 <code>*</code> 혹은 <code>1.</code>문자 뒤 1번의 공백 후 글을 작성한다.</p>
<h4 id="unordered-list">Unordered list</h4>
<p>비순차 목록 안의 목록은 다음줄의 2번의 공백 후 작성한다.</p>
<blockquote>
</blockquote>
<ul>
<li>List<ul>
<li>List in List</li>
</ul>
</li>
<li>List</li>
<li>List</li>
</ul>
<pre><code>* List
  * List in List
* List
* List</code></pre><pre><code>- List
- List
- List</code></pre><pre><code>+ List
+ List
+ List</code></pre><h4 id="ordered-list">Ordered list</h4>
<p>순차목록 안의 목록은 다음줄의 3번의 공백 후 작성한다.</p>
<blockquote>
</blockquote>
<ol>
<li>One<ol>
<li>One in One</li>
</ol>
</li>
<li>Two<ul>
<li>List</li>
</ul>
</li>
<li>Three</li>
</ol>
<pre><code>1. One
   1. One in One
1. Two
   - List
1. Three</code></pre><pre><code>1. One
2. Two
3. Three</code></pre><pre><code>2. One
1. Two
3. Three</code></pre><pre><code>1) One
2) Two
3) Three</code></pre><p>마지막 방법은 Velog에서 활용할 수 없다.</p>
<hr>
<h3 id="code">Code</h3>
<p>Markdown으로 문서를 작성하는 사람이라면 대부분 유용하게 쓰일 부분이라 생각한다.</p>
<h4 id="inline-code">Inline code</h4>
<p>문장 속에 Code를 작성하는 경우 유용하다.</p>
<blockquote>
<p>At the command prompt, type <code>nano</code>.</p>
</blockquote>
<pre><code>At the command prompt, type `nano`.</code></pre><p><code>`</code>을 사용하는 경우 <code>``</code>로 감싸준다.</p>
<blockquote>
<p><code>Use `code` in your Markdown file.</code></p>
</blockquote>
<pre><code>``Use `code` in your Markdown file.``</code></pre><h4 id="code-block">Code block</h4>
<p><code>```</code>의 옆에 언어를 적어주면 문법에 맞게 아름답게 보여준다.</p>
<blockquote>
</blockquote>
<pre><code class="language-py">print(&#39;Hello World!&#39;)</code></pre>
<pre><code class="language-py">``` py
print(&#39;Hello World!&#39;)
```</code></pre>
<p>[Tab]으로 간단하게 작성도 가능하다.</p>
<blockquote>
</blockquote>
<pre><code>print(&#39;Hello World!&#39;)</code></pre><pre><code>    print(&#39;Hello World!&#39;)</code></pre><hr>
<h3 id="links">Links</h3>
<p>대체로 참조를 할 경우 사용한다.</p>
<h4 id="heading-3">Heading</h4>
<p>문서 안에서 Heading을 찾아가는 방법이다. <code>#lowertitle</code>의 방식으로 사용한다.</p>
<blockquote>
<h2 id="title1">Title1</h2>
<p><a href="#title2">Go To Title2</a></p>
<h4 id="title2">Title2</h4>
</blockquote>
<pre><code>## Title1

[Go To Title2](#title2)
.
.
.

#### Title2</code></pre><h4 id="url">URL</h4>
<p>상황에 따라 적절한 방법을 골라서 사용하는 것이 좋겠다.</p>
<blockquote>
<p><a href="https://duckduckgo.com">https://duckduckgo.com</a></p>
</blockquote>
<pre><code>&lt;https://duckduckgo.com&gt;</code></pre><blockquote>
<p>My favorite search engine is <a href="https://duckduckgo.com">Duck Duck Go</a>.</p>
</blockquote>
<pre><code>My favorite search engine is [Duck Duck Go](https://duckduckgo.com).</code></pre><blockquote>
<p>My favorite search engine is <a href="https://duckduckgo.com">Duck Duck Go</a>.</p>
</blockquote>
<pre><code>My favorite search engine is [Duck Duck Go][1].
.
.
.
[1]: &lt;https://duckduckgo.com&gt;</code></pre><hr>
<h3 id="horizontal-rules">Horizontal Rules</h3>
<p>문서의 구역 구분을 명확하게 하기 위해 사용한다. Heading과 동일하게 위아래 공백의 줄을 요구한다.</p>
<blockquote>
<p>text</p>
</blockquote>
<hr>
<pre><code>text

---</code></pre><hr>
<h3 id="image">Image</h3>
<p>Local 경로의 사진을 넣어도 상관 없다.</p>
<blockquote>
<p><img src="https://mdg.imgix.net/assets/images/shiprock.jpg?auto=format&fit=clip&q=40&w=1080" alt="shiprock"></p>
</blockquote>
<pre><code>![shiprock](https://mdg.imgix.net/assets/images/shiprock.jpg?auto=format&amp;fit=clip&amp;q=40&amp;w=1080)</code></pre><hr>
<h3 id="escaping-characters">Escaping Characters</h3>
<p><code>\</code>를 통해서 Markdown문법의 특수문자 요소를 일반문자로 사용가능하다.</p>
<blockquote>
<p>* Without the backslash, this would be a bullet in an unordered list.</p>
</blockquote>
<pre><code>\* Without the backslash, this would be a bullet in an unordered list.</code></pre><h6 id="reference">Reference</h6>
<ol>
<li><a href="https://commonmark.org/help/">https://commonmark.org/help/</a></li>
<li><a href="https://www.markdownguide.org/basic-syntax/">https://www.markdownguide.org/basic-syntax/</a></li>
</ol>
]]></description>
        </item>
    </channel>
</rss>