<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.8.5">Jekyll</generator><link href="https://kyungmyeongsu.github.io/feed.xml" rel="self" type="application/atom+xml" /><link href="https://kyungmyeongsu.github.io/" rel="alternate" type="text/html" /><updated>2019-11-24T10:48:39+00:00</updated><id>https://kyungmyeongsu.github.io/feed.xml</id><title type="html">myeongsu의 개발 블로그</title><subtitle>개발 공부 블로그</subtitle><author><name>m_su1015</name><email>oplu92@gmail.com</email></author><entry><title type="html">글쓰기연습</title><link href="https://kyungmyeongsu.github.io/git/%EA%B8%80%EC%93%B0%EA%B8%B0%EC%97%B0%EC%8A%B5/" rel="alternate" type="text/html" title="글쓰기연습" /><published>2019-11-24T00:00:00+00:00</published><updated>2019-11-24T00:00:00+00:00</updated><id>https://kyungmyeongsu.github.io/git/%EA%B8%80%EC%93%B0%EA%B8%B0%EC%97%B0%EC%8A%B5</id><content type="html" xml:base="https://kyungmyeongsu.github.io/git/%EA%B8%80%EC%93%B0%EA%B8%B0%EC%97%B0%EC%8A%B5/">&lt;h2 id=&quot;글쓰기연습중&quot;&gt;글쓰기연습중&lt;/h2&gt;
&lt;ul&gt;
  &lt;li&gt;php&lt;/li&gt;
  &lt;li&gt;asp&lt;/li&gt;
  &lt;li&gt;java&lt;/li&gt;
&lt;/ul&gt;</content><author><name>m_su1015</name><email>oplu92@gmail.com</email></author><category term="git" /><summary type="html">글쓰기연습중 php asp java</summary></entry><entry><title type="html">markdown 사용법</title><link href="https://kyungmyeongsu.github.io/git/git-markdown%EC%82%AC%EC%9A%A9%EB%B2%95/" rel="alternate" type="text/html" title="markdown 사용법" /><published>2018-12-25T00:00:00+00:00</published><updated>2018-12-25T00:00:00+00:00</updated><id>https://kyungmyeongsu.github.io/git/git-markdown%EC%82%AC%EC%9A%A9%EB%B2%95</id><content type="html" xml:base="https://kyungmyeongsu.github.io/git/git-markdown%EC%82%AC%EC%9A%A9%EB%B2%95/">&lt;h1 id=&quot;markdown-이란&quot;&gt;Markdown 이란?&lt;/h1&gt;
&lt;ul&gt;
  &lt;li&gt;마크다운은 일반 텍스트 문서의 양식을 편집하는 문법이다. README 파일이나 온라인 문서, 혹은 일반 텍스트 편집기로 문서 양식을 편집할 때 쓰인다. 마크다운을 이용해 작된 문서는 쉽게 HTML 등 다른 문서 형태로 변환이 가능하다.&lt;/li&gt;
&lt;/ul&gt;

&lt;h1 id=&quot;markdown-의-장단점&quot;&gt;Markdown 의 장단점&lt;/h1&gt;

&lt;h2 id=&quot;장점&quot;&gt;장점&lt;/h2&gt;
&lt;ol&gt;
  &lt;li&gt;간결하다&lt;/li&gt;
  &lt;li&gt;여러 형태의 변환이 가능하다.&lt;/li&gt;
  &lt;li&gt;텍스트로 저장되기 때문에 용량 소모가 적다.&lt;/li&gt;
  &lt;li&gt;지원되는 프로그램과 플랫폼이 다양하다.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2 id=&quot;단점&quot;&gt;단점&lt;/h2&gt;
&lt;ol&gt;
  &lt;li&gt;표준이 없어 사용자에 따라 생성물이 다르다.&lt;/li&gt;
  &lt;li&gt;모든 HTML 아크업을 대신하진 못한다.&lt;/li&gt;
&lt;/ol&gt;

&lt;h1 id=&quot;markdown-문법&quot;&gt;Markdown 문법&lt;/h1&gt;

&lt;h2 id=&quot;제목header&quot;&gt;제목(header)&lt;/h2&gt;
&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;h1&amp;gt;&lt;/code&gt; 부터 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;h6&amp;gt;&lt;/code&gt; 까지 사용 할 수 있다.&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;# h1
## h2
### h3
#### h4
##### h5
###### h6
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;h1 id=&quot;h1&quot;&gt;h1&lt;/h1&gt;
&lt;h2 id=&quot;h2&quot;&gt;h2&lt;/h2&gt;
&lt;h3 id=&quot;h3&quot;&gt;h3&lt;/h3&gt;
&lt;h4 id=&quot;h4&quot;&gt;h4&lt;/h4&gt;
&lt;h5 id=&quot;h5&quot;&gt;h5&lt;/h5&gt;
&lt;h6 id=&quot;h6&quot;&gt;h6&lt;/h6&gt;

&lt;h2 id=&quot;인용문blockquote&quot;&gt;인용문(blockquote)&lt;/h2&gt;
&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;blockquote&amp;gt;&lt;/code&gt; 태그로 변환되어 사용된다.&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&amp;gt; BlockQuote 사용하기
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;blockquote&gt;
  &lt;p&gt;BlockQuote 사용하기&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;blockquote&amp;gt;&lt;/code&gt; 는 중첩되어 사용할 수 있다.&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&amp;gt; BlockQuote 사용하기1
&amp;gt; BlockQuote 사용하기2

&amp;gt; BlockQuote 사용하기1
&amp;gt;&amp;gt; BlockQuote 사용하기2
&amp;gt;&amp;gt;&amp;gt; BlockQuote 사용하기3
&amp;gt;&amp;gt;&amp;gt;&amp;gt; BlockQuote 사용하기4
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;blockquote&gt;
  &lt;p&gt;BlockQuote 사용하기1
BlockQuote 사용하기2&lt;/p&gt;
&lt;/blockquote&gt;

&lt;blockquote&gt;
  &lt;p&gt;BlockQuote 사용하기1&lt;/p&gt;
  &lt;blockquote&gt;
    &lt;p&gt;BlockQuote 사용하기2&lt;/p&gt;
    &lt;blockquote&gt;
      &lt;p&gt;BlockQuote 사용하기3&lt;/p&gt;
      &lt;blockquote&gt;
        &lt;p&gt;BlockQuote 사용하기4&lt;/p&gt;
      &lt;/blockquote&gt;
    &lt;/blockquote&gt;
  &lt;/blockquote&gt;
&lt;/blockquote&gt;

&lt;h2 id=&quot;목록list&quot;&gt;목록(list)&lt;/h2&gt;
&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;ol&amp;gt;&lt;/code&gt;, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;ul&amp;gt;&lt;/code&gt; 목록 태그로 변환된다.
목록 표시에는 숫자와 기호를 사용하여 표시한다.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;숫자 목록(번호)
    &lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;1. 첫번째
2. 두번째
3. 세번째
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;    &lt;/div&gt;
    &lt;ol&gt;
      &lt;li&gt;첫번째&lt;/li&gt;
      &lt;li&gt;두번째&lt;/li&gt;
      &lt;li&gt;세번째&lt;/li&gt;
    &lt;/ol&gt;
  &lt;/li&gt;
  &lt;li&gt;기호 목록(기호)
```&lt;/li&gt;
  &lt;li&gt;첫번째&lt;/li&gt;
  &lt;li&gt;두번째&lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;세번째&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;첫번째
    &lt;ul&gt;
      &lt;li&gt;두번째
        &lt;ul&gt;
          &lt;li&gt;세번째&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;첫번째&lt;/li&gt;
  &lt;li&gt;두번째&lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;세번째&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;첫번째
    &lt;ul&gt;
      &lt;li&gt;두번째
        &lt;ul&gt;
          &lt;li&gt;세번째&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;첫번째&lt;/li&gt;
  &lt;li&gt;두번째&lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;세번째&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;첫번째
    &lt;ul&gt;
      &lt;li&gt;두번째
        &lt;ul&gt;
          &lt;li&gt;세번째
```&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;첫번째&lt;/li&gt;
  &lt;li&gt;두번째&lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;세번째&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;첫번째
    &lt;ul&gt;
      &lt;li&gt;두번째
        &lt;ul&gt;
          &lt;li&gt;세번째&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;첫번째&lt;/li&gt;
  &lt;li&gt;두번째&lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;세번째&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;첫번째
    &lt;ul&gt;
      &lt;li&gt;두번째
        &lt;ul&gt;
          &lt;li&gt;세번째&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;첫번째&lt;/li&gt;
  &lt;li&gt;두번째&lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;세번째&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;첫번째
    &lt;ul&gt;
      &lt;li&gt;두번째
        &lt;ul&gt;
          &lt;li&gt;세번째&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;강조emphasis&quot;&gt;강조(emphasis)&lt;/h2&gt;
&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;em&amp;gt;&lt;/code&gt;, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;strong&amp;gt;&lt;/code&gt;, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;del&amp;gt;&lt;/code&gt;, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;u&amp;gt;&lt;/code&gt; 태그로 변환된다.&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;강조는 **별표 2개를 사용** 하거나 __언더바 2개를 사용__ 한다.
이텔릭 글씨는 *별표 1개를 사용* 하거나 _언더바 1개를 사용_ 한다.
취소선은 ~~물결 표시를 사용~~ 한다.
밑줄은 &amp;lt;u&amp;gt;밑줄&amp;lt;/u&amp;gt;을 사용 한다.
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;강조는 &lt;strong&gt;별표 2개를 사용&lt;/strong&gt; 하거나 &lt;strong&gt;언더바 2개를 사용&lt;/strong&gt; 한다.&lt;br /&gt;
이텔릭 글씨는 &lt;em&gt;별표 1개를 사용&lt;/em&gt; 하거나 &lt;em&gt;언더바 1개를 사용&lt;/em&gt; 한다.&lt;br /&gt;
취소선은 &lt;del&gt;물결 표시를 사용&lt;/del&gt; 한다.&lt;br /&gt;
밑줄은 &lt;u&gt;밑줄&lt;/u&gt;을 사용 한다.&lt;/p&gt;

&lt;h2 id=&quot;코드code&quot;&gt;코드(code)&lt;/h2&gt;
&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;pre&amp;gt;&lt;/code&gt;, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;code&amp;gt;&lt;/code&gt; 로 변환된다.
입력 방법은 ` (Grave)를 사용하여 입력한다.&lt;/p&gt;

&lt;h3 id=&quot;인라인inline-코드&quot;&gt;인라인(inline) 코드&lt;/h3&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;인라인 코드는 `사용하고 싶은 문장에 Grave를 붙여` 사용한다.
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;인라인 코드는 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;사용하고 싶은 문장에 Grave를 붙여&lt;/code&gt; 사용한다.&lt;/p&gt;

&lt;h3 id=&quot;블록block-코드&quot;&gt;블록(block) 코드&lt;/h3&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;블록 코드는 Grave를 세번이상 입력해야 한다.
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h2 id=&quot;링크link&quot;&gt;링크(link)&lt;/h2&gt;
&lt;p&gt;링크는 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;a href=&quot;&quot;&amp;gt;&lt;/code&gt; 처럼 사용된다.
링크에는 인라인 링크, 참조링크, 자동연결이 있다.&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;- 인라인링크
[구글](https://google.com)
[naver](https://naver.com &quot;네이버로 이동하기&quot;)

- 참조링크
[구글로가기][google]
[github][깃허브]
참조링크는 [참조링크]바로 사용할 수 있다.
[상대적참조](../tags/git)

[google]: https://google.com
[깃허브]: https://github.com
[참조링크]: https://google.com

- 자동연결
https://google.com
&amp;lt;https://google.com&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;ul&gt;
  &lt;li&gt;
    &lt;p&gt;인라인링크&lt;br /&gt;
&lt;a href=&quot;https://google.com&quot;&gt;구글&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;https://naver.com&quot; title=&quot;네이버로 이동하기&quot;&gt;naver&lt;/a&gt;&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;참조링크&lt;br /&gt;
&lt;a href=&quot;https://google.com&quot;&gt;구글로가기&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;https://github.com&quot;&gt;github&lt;/a&gt;&lt;br /&gt;
참조링크는 &lt;a href=&quot;https://google.com&quot;&gt;참조링크&lt;/a&gt;바로 사용할 수 있다.&lt;br /&gt;
&lt;a href=&quot;../tags/git&quot;&gt;상대적참조&lt;/a&gt;&lt;/p&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;ul&gt;
  &lt;li&gt;자동연결&lt;br /&gt;
https://google.com&lt;br /&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;https://google.com&quot;&gt;https://google.com&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;수평선horizontal-rules&quot;&gt;수평선(horizontal Rules)&lt;/h2&gt;
&lt;p&gt;수평선은 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;hr&amp;gt;&lt;/code&gt; 처럼 사용된다.
&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;-&lt;/code&gt;, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;*&lt;/code&gt;, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;_&lt;/code&gt; 중 선택하여 3개 이상을 작성하면 된다.&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;---
***
___
-----------------
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;hr /&gt;
&lt;hr /&gt;
&lt;hr /&gt;
&lt;hr /&gt;

&lt;h2 id=&quot;이미지image&quot;&gt;이미지(image)&lt;/h2&gt;
&lt;p&gt;이미지는 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;img&amp;gt;&lt;/code&gt; 처럼 사용된다.
이미지에는 인라인이미지, 링크이미지, 참조이미지가 있다.&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;- 인라인이미지
![gitLogo](/assets/images/gitlogo.png)

- 참조이미지
![gitLogo][1]

- 링크이미지
![googleLogo](https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png)

[1]:/asset/images/gitlogo.png
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;ul&gt;
  &lt;li&gt;
    &lt;p&gt;인라인이미지&lt;br /&gt;
&lt;img src=&quot;/assets/images/gitlogo.png&quot; alt=&quot;gitLogo&quot; /&gt;&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;참조이미지&lt;br /&gt;
&lt;img src=&quot;/assets/images/gitlogo.png&quot; alt=&quot;gitLogo&quot; /&gt;&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;링크이미지&lt;br /&gt;
&lt;img src=&quot;https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png&quot; alt=&quot;googleLogo&quot; /&gt;&lt;/p&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;이미지에-링크-연결하기&quot;&gt;이미지에 링크 연결하기&lt;/h3&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;- 이미지에 링크 연결
[![gitLogo](/assets/images/gitlogo.png)](https://github.com)
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;ul&gt;
  &lt;li&gt;이미지에 링크 연결&lt;br /&gt;
&lt;a href=&quot;https://github.com&quot;&gt;&lt;img src=&quot;/assets/images/gitlogo.png&quot; alt=&quot;gitLogo&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;표table&quot;&gt;표(table)&lt;/h2&gt;
&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;table&amp;gt;&lt;/code&gt; 처럼 사용된다.
&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;|&lt;/code&gt;을 통해서 칸을 구분한다.
헤더 부분과의 구분은 &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;---&lt;/code&gt;을 사용하면 구별된다.
&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;:&lt;/code&gt;을 통해서 정렬 방법을 정할 수 있다.&lt;/p&gt;
&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;|제목|내용|날짜|
|:---|:---:|---:|
|왼쪽정렬|가운데정렬|오른쪽정렬|
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;|제목|내용|날짜|
|:—|:—:|—:|
|왼쪽정렬|가운데정렬|오른쪽정렬|&lt;/p&gt;

&lt;hr /&gt;
&lt;p&gt;이것으로 markdown 기본 문법을 마치겠습니다.&lt;/p&gt;</content><author><name>m_su1015</name><email>oplu92@gmail.com</email></author><category term="git" /><category term="markdown" /><summary type="html">Markdown 이란? 마크다운은 일반 텍스트 문서의 양식을 편집하는 문법이다. README 파일이나 온라인 문서, 혹은 일반 텍스트 편집기로 문서 양식을 편집할 때 쓰인다. 마크다운을 이용해 작된 문서는 쉽게 HTML 등 다른 문서 형태로 변환이 가능하다.</summary></entry><entry><title type="html">Welcome to Jekyll!</title><link href="https://kyungmyeongsu.github.io/blogging/%EB%B8%94%EB%A1%9C%EA%B7%B8%EA%B8%801/" rel="alternate" type="text/html" title="Welcome to Jekyll!" /><published>2018-12-20T12:26:28+00:00</published><updated>2018-12-20T12:26:28+00:00</updated><id>https://kyungmyeongsu.github.io/blogging/%EB%B8%94%EB%A1%9C%EA%B7%B8%EA%B8%801</id><content type="html" xml:base="https://kyungmyeongsu.github.io/blogging/%EB%B8%94%EB%A1%9C%EA%B7%B8%EA%B8%801/">&lt;p&gt;You’ll find this post in your &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;_posts&lt;/code&gt; directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;jekyll serve&lt;/code&gt;, which launches a web server and auto-regenerates your site when a file is updated.&lt;/p&gt;

&lt;p&gt;To add new posts, simply add a file in the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;_posts&lt;/code&gt; directory that follows the convention &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;YYYY-MM-DD-name-of-post.ext&lt;/code&gt; and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.&lt;/p&gt;

&lt;p&gt;Jekyll also offers powerful support for code snippets:&lt;/p&gt;

&lt;p&gt;​&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;python
def print_hi(name):
  print(&quot;hello&quot;, name)
print_hi('Tom')
​&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Check out the &lt;a href=&quot;https://jekyllrb.com/docs/home&quot;&gt;Jekyll docs&lt;/a&gt; for more info on how to get the most out of Jekyll. File all bugs/feature requests at &lt;a href=&quot;https://github.com/jekyll/jekyll&quot;&gt;Jekyll’s GitHub repo&lt;/a&gt;. If you have questions, you can ask them on &lt;a href=&quot;https://talk.jekyllrb.com/&quot;&gt;Jekyll Talk&lt;/a&gt;.&lt;/p&gt;</content><author><name>m_su1015</name><email>oplu92@gmail.com</email></author><summary type="html">You’ll find this post in your _posts directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run jekyll serve, which launches a web server and auto-regenerates your site when a file is updated.</summary></entry></feed>