<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.9.0">Jekyll</generator><link href="https://yeojin-g.github.io///feed.xml" rel="self" type="application/atom+xml" /><link href="https://yeojin-g.github.io///" rel="alternate" type="text/html" /><updated>2021-12-15T11:45:46+00:00</updated><id>https://yeojin-g.github.io///feed.xml</id><title type="html">Yeojin’s Blog</title><subtitle>Kookmin Univ Software 21</subtitle><entry><title type="html">How to use Markdown?</title><link href="https://yeojin-g.github.io///Markdown/" rel="alternate" type="text/html" title="How to use Markdown?" /><published>2021-12-15T06:58:00+00:00</published><updated>2021-12-15T06:58:00+00:00</updated><id>https://yeojin-g.github.io///Markdown</id><content type="html" xml:base="https://yeojin-g.github.io///Markdown/">&lt;h1 id=&quot;markdown이란&quot;&gt;Markdown이란?&lt;/h1&gt;

&lt;h3 id=&quot;마크다운markdown-은-일반-텍스트-기반의-경량-마크업-언어다-일반-텍스트로-서식이-있는-문서를-작성하는-데-사용되며-일반-마크업-언어에-비해-문법이-쉽고-간단한-것이-특징이다-html과-리치-텍스트rtf-등-서식-문서로-쉽게-변환되기-때문에-응용-소프트웨어와-함께-배포되는-readme-파일이나-온라인-게시물-등에-많이-사용된다&quot;&gt;&lt;strong&gt;마크다운(markdown)&lt;/strong&gt; 은 일반 텍스트 기반의 경량 마크업 언어다. 일반 텍스트로 서식이 있는 문서를 작성하는 데 사용되며, 일반 마크업 언어에 비해 문법이 쉽고 간단한 것이 특징이다. HTML과 리치 텍스트(RTF) 등 서식 문서로 쉽게 변환되기 때문에 응용 소프트웨어와 함께 배포되는 README 파일이나 온라인 게시물 등에 많이 사용된다.&lt;/h3&gt;

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

&lt;h2 id=&quot;1-글씨-크기-조절&quot;&gt;1. 글씨 크기 조절&lt;/h2&gt;
&lt;h3 id=&quot;--마크다운은--기호를-이용해-글씨의-크기를-조절한다-은-총-1개부터-6개까지-쓸-수-있으며--개수가-많을수록-글씨-크기가-작아진다&quot;&gt;- 마크다운은 ‘#’ 기호를 이용해 글씨의 크기를 조절한다. ‘#’은 총 1개부터 6개까지 쓸 수 있으며 ‘#’ 개수가 많을수록 글씨 크기가 작아진다.&lt;/h3&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;# 안녕하세요
## 안녕하세요
### 안녕하세요
#### 안녕하세요
##### 안녕하세요
###### 안녕하세요                                                                
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h3 id=&quot;--위-코드를-통해-출력되는-글자의-크기는-각각-다음과-같다&quot;&gt;- 위 코드를 통해 출력되는 글자의 크기는 각각 다음과 같다.&lt;/h3&gt;

&lt;h1 id=&quot;안녕하세요&quot;&gt;안녕하세요&lt;/h1&gt;
&lt;h2 id=&quot;안녕하세요-1&quot;&gt;안녕하세요&lt;/h2&gt;
&lt;h3 id=&quot;안녕하세요-2&quot;&gt;안녕하세요&lt;/h3&gt;
&lt;h4 id=&quot;안녕하세요-3&quot;&gt;안녕하세요&lt;/h4&gt;
&lt;h5 id=&quot;안녕하세요-4&quot;&gt;안녕하세요&lt;/h5&gt;
&lt;h6 id=&quot;안녕하세요-5&quot;&gt;안녕하세요&lt;/h6&gt;

&lt;h2 id=&quot;2-글씨체-및-취소선&quot;&gt;2. 글씨체 및 취소선&lt;/h2&gt;

&lt;h3 id=&quot;--마크다운에서는-이탤릭체-볼드체-취소선을-사용할-수-있다-사용하는-방법은-다음과-같다&quot;&gt;- 마크다운에서는 이탤릭체, 볼드체, 취소선을 사용할 수 있다. 사용하는 방법은 다음과 같다.&lt;/h3&gt;

&lt;h3 id=&quot;1-이탤릭체&quot;&gt;(1) 이탤릭체&lt;/h3&gt;
&lt;h4 id=&quot;--이탤릭체로-작성하고-싶은-문자열-앞뒤로--혹은-_을-각각-하나씩-붙여준다&quot;&gt;- 이탤릭체로 작성하고 싶은 문자열 앞뒤로 ‘*’ 혹은 ‘_‘을 각각 하나씩 붙여준다.&lt;/h4&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;*Hello*                      
_Hello_         
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h4 id=&quot;--위-코드를-통해-출력되는-실제-글자의-모습은-다음과-같다&quot;&gt;- 위 코드를 통해 출력되는 실제 글자의 모습은 다음과 같다.&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;Hello&lt;/em&gt;                                                 &lt;br /&gt;
&lt;em&gt;Hello&lt;/em&gt;&lt;/p&gt;

&lt;h3 id=&quot;2-볼드체&quot;&gt;(2) 볼드체&lt;/h3&gt;
&lt;h4 id=&quot;--볼드체로-작성하고-싶은-문자열-앞뒤로--혹은-_을-두개씩-붙여준다&quot;&gt;- 볼드체로 작성하고 싶은 문자열 앞뒤로 ‘*’ 혹은 ‘_‘을 두개씩 붙여준다.&lt;/h4&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;**Hello**                            
__Hello__            
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h4 id=&quot;--위-코드를-통해-출력되는-실제-글자의-모습은-다음과-같다-1&quot;&gt;- 위 코드를 통해 출력되는 실제 글자의 모습은 다음과 같다.&lt;/h4&gt;
&lt;p&gt;&lt;strong&gt;Hello&lt;/strong&gt;                       &lt;br /&gt;
&lt;strong&gt;Hello&lt;/strong&gt;&lt;/p&gt;

&lt;h3 id=&quot;3-취소선&quot;&gt;(3) 취소선&lt;/h3&gt;
&lt;h4 id=&quot;--취소선을-긋고-싶은-문자열-앞뒤로--을-붙여준다&quot;&gt;- 취소선을 긋고 싶은 문자열 앞뒤로 ‘~~’ 을 붙여준다.&lt;/h4&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;~~Hello~~                      
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h4 id=&quot;--위-코드를-통해-출력되는-실제-글자의-모습은-다음과-같다-2&quot;&gt;- 위 코드를 통해 출력되는 실제 글자의 모습은 다음과 같다.&lt;/h4&gt;
&lt;p&gt;&lt;del&gt;Hello&lt;/del&gt;&lt;/p&gt;

&lt;h2 id=&quot;3-각종-글머리-기호&quot;&gt;3. 각종 글머리 기호&lt;/h2&gt;

&lt;h3 id=&quot;--마크다운에서는-글머리-기호를-사용할-수-있다&quot;&gt;- 마크다운에서는 글머리 기호를 사용할 수 있다.&lt;/h3&gt;

&lt;h3 id=&quot;1-순서가-있는-경우---숫자&quot;&gt;(1) 순서가 있는 경우 - 숫자&lt;/h3&gt;
&lt;h4 id=&quot;--숫자를-글-앞머리에-붙이고-싶은-경우-우리가-평소에-쓰듯-앞에-숫자와-마침표를-붙여주면-된다&quot;&gt;- 숫자를 글 앞머리에 붙이고 싶은 경우, 우리가 평소에 쓰듯 앞에 숫자와 마침표를 붙여주면 된다.&lt;/h4&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;h4 id=&quot;--위-코드의-결과는-아래와-같다&quot;&gt;- 위 코드의 결과는 아래와 같다.&lt;/h4&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;h3 id=&quot;2-순서가-없는-경우---기호&quot;&gt;(2) 순서가 없는 경우 - 기호&lt;/h3&gt;
&lt;h4 id=&quot;--마크다운은----의-글머리-기호를-지원한다-이를-사용하고-싶을-경우-문장-앞에-기호를-붙여주면-된다&quot;&gt;- 마크다운은 ‘-‘, ‘+’, ‘*‘의 글머리 기호를 지원한다. 이를 사용하고 싶을 경우, 문장 앞에 기호를 붙여주면 된다.&lt;/h4&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;h4 id=&quot;--위-코드의-결과는-아래와-같다-1&quot;&gt;- 위 코드의 결과는 아래와 같다.&lt;/h4&gt;
&lt;ul&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;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;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;4-코드블럭&quot;&gt;4. 코드블럭&lt;/h2&gt;

&lt;h3 id=&quot;--마크다운에서-코드블럭을-사용하고-싶은-경우-tab을-이용해-들여쓰기를-하여-작성하면-된다-그-후로-들여쓰기가-없는-문장을-만나면-코드블럭이-끝나게-된다&quot;&gt;- 마크다운에서 코드블럭을 사용하고 싶은 경우, tab을 이용해 들여쓰기를 하여 작성하면 된다. 그 후로 들여쓰기가 없는 문장을 만나면 코드블럭이 끝나게 된다.&lt;/h3&gt;

&lt;h4 id=&quot;안녕하세요-6&quot;&gt;안녕하세요&lt;/h4&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;h4 id=&quot;들여쓰기-안-한-부분&quot;&gt;들여쓰기 안 한 부분&lt;/h4&gt;

&lt;h2 id=&quot;5-이미지-삽입&quot;&gt;5. 이미지 삽입&lt;/h2&gt;

&lt;h3 id=&quot;--마크다운을-통해-포스트를-작성하다보면-이미지를-삽입해야하는-경우가-발생한다-그럴-경우-쉽게-삽입할-수-있는-방법이-있다&quot;&gt;- 마크다운을 통해 포스트를 작성하다보면 이미지를 삽입해야하는 경우가 발생한다. 그럴 경우 쉽게 삽입할 수 있는 방법이 있다.&lt;/h3&gt;

&lt;h4 id=&quot;1-업로드-하고싶은-이미지-파일을-저장한다&quot;&gt;(1) 업로드 하고싶은 이미지 파일을 저장한다.&lt;/h4&gt;

&lt;p&gt;&lt;img src=&quot;https://user-images.githubusercontent.com/84260219/146176991-fba09e4c-522b-4be4-9b2f-bf9df30ba2c7.png&quot; alt=&quot;image&quot; /&gt;&lt;/p&gt;

&lt;h4 id=&quot;2-github-repository의-issue-창에-들어가-이미지-파일을-넣는다&quot;&gt;(2) github repository의 issue 창에 들어가 이미지 파일을 넣는다.&lt;/h4&gt;

&lt;p&gt;&lt;img src=&quot;https://user-images.githubusercontent.com/84260219/146177234-78f69665-bc05-4752-852c-22bc3f7a494c.png&quot; alt=&quot;tempsnip&quot; /&gt;&lt;/p&gt;

&lt;h4 id=&quot;3-몇-초-기다리면-다음과-같은-링크로-변환되는데-이를-복사하여-포스트-중-넣고-싶은-위치에-붙여넣는다&quot;&gt;(3) 몇 초 기다리면 다음과 같은 링크로 변환되는데, 이를 복사하여 포스트 중 넣고 싶은 위치에 붙여넣는다.&lt;/h4&gt;

&lt;p&gt;&lt;img src=&quot;https://user-images.githubusercontent.com/84260219/146177385-2b53527a-a6e8-4375-b110-6917caf9e618.png&quot; alt=&quot;image&quot; /&gt;&lt;/p&gt;

&lt;hr /&gt;
&lt;h3 id=&quot;이-외에도-다양한-markdown-문법이-존재한다-오늘은-자주-사용되는-기능을-위주로-포스트하였다&quot;&gt;이 외에도 다양한 Markdown 문법이 존재한다. 오늘은 자주 사용되는 기능을 위주로 포스트하였다.&lt;/h3&gt;</content><author><name></name></author><category term="jekyll" /><category term="blog" /><summary type="html">Markdown이란?</summary></entry><entry><title type="html">Test Post</title><link href="https://yeojin-g.github.io///test/" rel="alternate" type="text/html" title="Test Post" /><published>2021-11-25T02:37:00+00:00</published><updated>2021-11-25T02:37:00+00:00</updated><id>https://yeojin-g.github.io///test</id><content type="html" xml:base="https://yeojin-g.github.io///test/">&lt;h1 id=&quot;this-is-a-test-file&quot;&gt;This is a test file.&lt;/h1&gt;
&lt;h2 id=&quot;hello-my-name-is-yeojin-goo&quot;&gt;Hello! My name is Yeojin Goo.&lt;/h2&gt;
&lt;h3 id=&quot;i-live-in-incheon&quot;&gt;I live in Incheon.&lt;/h3&gt;
&lt;h3 id=&quot;bye&quot;&gt;Bye~!&lt;/h3&gt;</content><author><name></name></author><category term="jekyll" /><category term="moon" /><category term="blog" /><category term="theme" /><summary type="html">This is a test file. Hello! My name is Yeojin Goo. I live in Incheon. Bye~!</summary></entry><entry><title type="html">Moon Jekyll Theme</title><link href="https://yeojin-g.github.io///moon-theme/" rel="alternate" type="text/html" title="Moon Jekyll Theme" /><published>2016-04-06T00:00:00+00:00</published><updated>2016-04-06T00:00:00+00:00</updated><id>https://yeojin-g.github.io///moon-theme</id><content type="html" xml:base="https://yeojin-g.github.io///moon-theme/">&lt;p&gt;&lt;img src=&quot;https://cloud.githubusercontent.com/assets/754514/14509720/61c61058-01d6-11e6-93ab-0918515ecd56.png&quot; alt=&quot;Moon Homepage&quot; /&gt;&lt;/p&gt;

&lt;center&gt;&lt;b&gt;Moon&lt;/b&gt; is a minimal, one column jekyll theme.&lt;/center&gt;

&lt;p&gt;I’m not a developer or designer. And I don’t add footer to show who did this theme. If you like this theme or using it, please give a &lt;strong&gt;star&lt;/strong&gt; for motivation, It makes me happy.&lt;/p&gt;

&lt;iframe src=&quot;https://ghbtns.com/github-btn.html?user=TaylanTatli&amp;amp;repo=Moon&amp;amp;type=star&amp;amp;count=true&amp;amp;size=large&quot; frameborder=&quot;0&quot; scrolling=&quot;0&quot; width=&quot;160px&quot; height=&quot;30px&quot;&gt;&lt;/iframe&gt;

&lt;h2 id=&quot;installation&quot;&gt;Installation&lt;/h2&gt;
&lt;ul&gt;
  &lt;li&gt;Fork the &lt;a href=&quot;https://github.com/TaylanTatli/Moon/fork&quot;&gt;Moon repo&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;Edit &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;_config.yml&lt;/code&gt; file.&lt;/li&gt;
  &lt;li&gt;Remove sample posts from &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;_posts&lt;/code&gt; folder and add yours.&lt;/li&gt;
  &lt;li&gt;Edit &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;index.md&lt;/code&gt; file in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;about&lt;/code&gt; folder.&lt;/li&gt;
  &lt;li&gt;Change repo name to &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;YourUserName.github.io&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s all.&lt;/p&gt;

&lt;h2 id=&quot;preview&quot;&gt;Preview&lt;/h2&gt;

&lt;figure class=&quot;third&quot;&gt;
    
    &lt;a href=&quot;https://cloud.githubusercontent.com/assets/754514/14509716/61ac6c8e-01d6-11e6-879f-8308883de790.png&quot;&gt;&lt;img src=&quot;https://cloud.githubusercontent.com/assets/754514/14509716/61ac6c8e-01d6-11e6-879f-8308883de790.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
    
    &lt;a href=&quot;https://cloud.githubusercontent.com/assets/754514/14509717/61ad05ae-01d6-11e6-85ae-5a817dd8763b.png&quot;&gt;&lt;img src=&quot;https://cloud.githubusercontent.com/assets/754514/14509717/61ad05ae-01d6-11e6-85ae-5a817dd8763b.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
    
    &lt;a href=&quot;https://cloud.githubusercontent.com/assets/754514/14509714/61a89708-01d6-11e6-8fcd-74b002a060df.png&quot;&gt;&lt;img src=&quot;https://cloud.githubusercontent.com/assets/754514/14509714/61a89708-01d6-11e6-8fcd-74b002a060df.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
    
    &lt;figcaption&gt;Screenshots of Moon Theme&lt;/figcaption&gt;
&lt;/figure&gt;

&lt;hr /&gt;

&lt;figure class=&quot;half&quot;&gt;
    
    &lt;a href=&quot;https://cloud.githubusercontent.com/assets/754514/14509718/61b09a20-01d6-11e6-8da1-4202ae4d83cd.png&quot;&gt;&lt;img src=&quot;https://cloud.githubusercontent.com/assets/754514/14509718/61b09a20-01d6-11e6-8da1-4202ae4d83cd.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
    
    &lt;a href=&quot;https://cloud.githubusercontent.com/assets/754514/14509715/61aa9d00-01d6-11e6-81a6-c6837edf2e84.png&quot;&gt;&lt;img src=&quot;https://cloud.githubusercontent.com/assets/754514/14509715/61aa9d00-01d6-11e6-81a6-c6837edf2e84.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
    
    &lt;figcaption&gt;Moon Theme on Small Screen Size&lt;/figcaption&gt;
&lt;/figure&gt;

&lt;p&gt;See a &lt;a href=&quot;http://taylantatli.github.io/Moon&quot;&gt;live version of Moon&lt;/a&gt; hosted on GitHub.&lt;/p&gt;

&lt;h2 id=&quot;site-setup&quot;&gt;Site Setup&lt;/h2&gt;
&lt;p&gt;A quick checklist of the files you’ll want to edit to get up and running.&lt;/p&gt;

&lt;h3 id=&quot;site-wide-configuration&quot;&gt;Site Wide Configuration&lt;/h3&gt;
&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;_config.yml&lt;/code&gt; is your friend. Open it up and personalize it. Most variables are self explanatory but here’s an explanation of each if needed:&lt;/p&gt;

&lt;h4 id=&quot;title&quot;&gt;title&lt;/h4&gt;

&lt;p&gt;The title of your site… shocker!&lt;/p&gt;

&lt;p&gt;Example &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;title: My Awesome Site&lt;/code&gt;&lt;/p&gt;

&lt;h4 id=&quot;bio&quot;&gt;bio&lt;/h4&gt;

&lt;p&gt;The description to show on your homepage.&lt;/p&gt;

&lt;h4 id=&quot;description&quot;&gt;description&lt;/h4&gt;

&lt;p&gt;The description to use for meta tags and navigation menu.&lt;/p&gt;

&lt;h4 id=&quot;url&quot;&gt;url&lt;/h4&gt;

&lt;p&gt;Used to generate absolute urls in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;sitemap.xml&lt;/code&gt;, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;feed.xml&lt;/code&gt;, and for generating canonical URLs in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;head&amp;gt;&lt;/code&gt;. When developing locally either comment this out or use something like &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;http://localhost:4000&lt;/code&gt; so all assets load properly. &lt;em&gt;Don’t include a trailing &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/&lt;/code&gt;&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Examples:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-yaml&quot; data-lang=&quot;yaml&quot;&gt;&lt;span class=&quot;na&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;http://taylantatli.me/Moon&lt;/span&gt;
&lt;span class=&quot;na&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;http://localhost:4000&lt;/span&gt;
&lt;span class=&quot;na&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;//cooldude.github.io&lt;/span&gt;
&lt;span class=&quot;na&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;h4 id=&quot;reading_time&quot;&gt;reading_time&lt;/h4&gt;

&lt;p&gt;Set true to show reading time for posts. And set &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;words_per_minute&lt;/code&gt;, default is 200.&lt;/p&gt;

&lt;h4 id=&quot;logo&quot;&gt;logo&lt;/h4&gt;
&lt;p&gt;Your site’s logo. It will show on homepage and navigation menu. Also used for twitter meta tags.&lt;/p&gt;

&lt;h4 id=&quot;background&quot;&gt;background&lt;/h4&gt;
&lt;p&gt;Image for background. If you don’t set it, color will be used as a background.&lt;/p&gt;

&lt;h4 id=&quot;google-analytics-and-webmaster-tools&quot;&gt;Google Analytics and Webmaster Tools&lt;/h4&gt;

&lt;p&gt;Google Analytics UA and Webmaster Tool verification tags can be entered in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;_config.yml&lt;/code&gt;. For more information on obtaining these meta tags check &lt;a href=&quot;http://support.google.com/webmasters/bin/answer.py?hl=en&amp;amp;answer=35179&quot;&gt;Google Webmaster Tools&lt;/a&gt; and &lt;a href=&quot;https://ssl.bing.com/webmaster/configure/verify/ownership&quot;&gt;Bing Webmaster Tools&lt;/a&gt; support.&lt;/p&gt;

&lt;h4 id=&quot;mathjax&quot;&gt;MathJax&lt;/h4&gt;
&lt;p&gt;It’s enabled. But if you don’t want to use it. Set it false in  &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;_config.yml&lt;/code&gt;.&lt;/p&gt;

&lt;h4 id=&quot;disqus-comments&quot;&gt;Disqus Comments&lt;/h4&gt;
&lt;p&gt;Set your disqus shortname in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;_config.yml&lt;/code&gt; to use comments.&lt;/p&gt;

&lt;hr /&gt;

&lt;h3 id=&quot;navigation-links&quot;&gt;Navigation Links&lt;/h3&gt;

&lt;p&gt;To set what links appear in the top navigation edit &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;_data/navigation.yml&lt;/code&gt;. Use the following format to set the URL and title for as many links as you’d like. &lt;em&gt;External links will open in a new window.&lt;/em&gt;&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-yaml&quot; data-lang=&quot;yaml&quot;&gt;&lt;span class=&quot;pi&quot;&gt;-&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;Home&lt;/span&gt;
  &lt;span class=&quot;na&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;/&lt;/span&gt;

&lt;span class=&quot;pi&quot;&gt;-&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;Blog&lt;/span&gt;
  &lt;span class=&quot;na&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;/blog/&lt;/span&gt;

&lt;span class=&quot;pi&quot;&gt;-&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;Projects&lt;/span&gt;
  &lt;span class=&quot;na&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;/projects/&lt;/span&gt;

&lt;span class=&quot;pi&quot;&gt;-&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;About&lt;/span&gt;
  &lt;span class=&quot;na&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;/about/&lt;/span&gt;

&lt;span class=&quot;pi&quot;&gt;-&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;Moon&lt;/span&gt;
  &lt;span class=&quot;na&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;pi&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;http://taylantatli.me/Moon&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;hr /&gt;

&lt;h2 id=&quot;layouts-and-content&quot;&gt;Layouts and Content&lt;/h2&gt;

&lt;p&gt;Moon Theme use &lt;a href=&quot;https://github.com/penibelst/jekyll-compress-html&quot;&gt;Jekyll Compress&lt;/a&gt; to compress html output. But it can cause errors if you use “linenos” (line numbers). I suggest don’t use line numbers for codes, because it won’t look good with this theme, also i didn’t give a proper style for them. If you insist to use line numbers, just remove &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;layout: compress&lt;/code&gt; string from layouts. It will disable compressing.&lt;/p&gt;

&lt;h3 id=&quot;feature-image&quot;&gt;Feature Image&lt;/h3&gt;

&lt;p&gt;You can set feature image per post. Just add &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;feature: some link&lt;/code&gt; to your post’s front matter.&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;feature: /assets/img/some-image.png
or
feaure: http://example.com/some-image.png
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;This also will be used for twitter card:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://cloud.githubusercontent.com/assets/754514/14509719/61c5751c-01d6-11e6-8c29-ce8ccad149bf.png&quot; alt=&quot;Moon Twitter Card&quot; /&gt;&lt;/p&gt;

&lt;h3 id=&quot;comments&quot;&gt;Comments&lt;/h3&gt;
&lt;p&gt;To show disqus comments for your post add &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;comments: true&lt;/code&gt; to your post’s front matter.&lt;/p&gt;

&lt;hr /&gt;

&lt;h2 id=&quot;questions&quot;&gt;Questions?&lt;/h2&gt;

&lt;p&gt;Found a bug or aren’t quite sure how something works? By all means &lt;a href=&quot;https://github.com/TaylanTatli/Moon/issues/new&quot;&gt;file a GitHub Issue&lt;/a&gt;. And if you make something cool with this theme feel free to let me know.&lt;/p&gt;

&lt;hr /&gt;

&lt;h2 id=&quot;license&quot;&gt;License&lt;/h2&gt;

&lt;p&gt;This theme is free and open source software, distributed under the MIT License. So feel free to use this Jekyll theme on your site without linking back to me or including a disclaimer.&lt;/p&gt;</content><author><name></name></author><category term="jekyll" /><category term="moon" /><category term="blog" /><category term="about" /><category term="theme" /><summary type="html">Minimal, one column Jekyll theme for your blog.</summary></entry></feed>