<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
   <!-- 피드경로 명시 -->
  <channel>
    <title> 서상원  </title>
    <description></description>
    <link>https://www.seosangwon.com/</link>
    <atom:link href="https://www.seosangwon.com/feed.xml" rel="self" type="application/rss+xml"/>
    <pubDate>Fri, 27 Mar 2026 18:58:49 +0000</pubDate>
    <lastBuildDate>Fri, 27 Mar 2026 18:58:49 +0000</lastBuildDate>
    <generator>Jekyll v3.10.0</generator>
    
      <item>
        <title>hello</title>
        <description>
          <![CDATA[
            <p>Paragraphs are separated by a blank line.</p>

<p>2nd paragraph. <em>Italic</em>, <strong>bold</strong>, and <code class="language-plaintext highlighter-rouge">monospace</code>. Itemized lists
look like:</p>

<ul>
  <li>this one</li>
  <li>that one</li>
  <li>the other one</li>
</ul>

<p>Note that — not considering the asterisk — the actual text
content starts at 4-columns in.</p>

<blockquote>
  <p>Block quotes are
written like so.</p>

  <p>They can span multiple paragraphs,
if you like.</p>
</blockquote>

<p>Use 3 dashes for an em-dash. Use 2 dashes for ranges (ex., “it’s all
in chapters 12–14”). Three dots … will be converted to an ellipsis.
Unicode is supported. ☺</p>

<h2 id="an-h2-header">An h2 header</h2>

<p>Here’s a numbered list:</p>

<ol>
  <li>first item</li>
  <li>second item</li>
  <li>third item</li>
</ol>

<p>Note again how the actual text starts at 4 columns in (4 characters
from the left side). Here’s a code sample:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code># Let me re-iterate ...
for i in 1 .. 10 { do-something(i) }
</code></pre></div></div>

<p>As you probably guessed, indented 4 spaces. By the way, instead of
indenting the block, you can use delimited blocks, if you like:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>define foobar() {
    print "Welcome to flavor country!";
}
</code></pre></div></div>

<p>(which makes copying &amp; pasting easier). You can optionally mark the
delimited block for Pandoc to syntax highlight it:</p>

<div class="language-python highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kn">import</span> <span class="nn">time</span>
<span class="c1"># Quick, count to ten!
</span><span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">10</span><span class="p">):</span>
    <span class="c1"># (but not *too* quick)
</span>    <span class="n">time</span><span class="p">.</span><span class="n">sleep</span><span class="p">(</span><span class="mf">0.5</span><span class="p">)</span>
    <span class="k">print</span> <span class="n">i</span>
</code></pre></div></div>

<p><img src="_assets/bar/2024-08-16-16-43-23.png" width="75%" />
<img src="_assets/bar/2024-08-29-09-45-46.png" width="75%" /></p>

<p>나는 이것에 대해 크게 혼동할 수 밖에 없었다..</p>

<h3 id="an-h3-header">An h3 header</h3>

<p>Now a nested list:</p>

<ol>
  <li>
    <p>First, get these ingredients:</p>

    <ul>
      <li>carrots</li>
      <li>celery</li>
      <li>lentils</li>
    </ul>
  </li>
  <li>
    <p>Boil some water.</p>
  </li>
  <li>
    <p>Dump everything in the pot and follow
this algorithm:</p>

    <div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>find wooden spoon
uncover pot
stir
cover pot
balance wooden spoon precariously on pot handle
wait 10 minutes
goto first step (or shut off burner when done)
</code></pre></div>    </div>

    <p>Do not bump wooden spoon or it will fall.</p>
  </li>
</ol>

<p>Notice again how text always lines up on 4-space indents (including
that last line which continues item 3 above).</p>

<p>Here’s a link to <a href="http://foo.bar">a website</a>, to a <a href="local-doc.html">local
doc</a>, and to a <a href="#an-h2-header">section heading in the current
doc</a>. Here’s a footnote <sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote" rel="footnote">1</a></sup>.</p>

<p>Tables can look like this:</p>

<p>size  material      color
—-  ————  ————
9     leather       brown
10    hemp canvas   natural
11    glass         transparent</p>

<p>Table: Shoes, their sizes, and what they’re made of</p>

<p>(The above is the caption for the table.) Pandoc also supports
multi-line tables:</p>

<hr />
<p>keyword   text
——–  ———————–
red       Sunsets, apples, and
          other red or reddish
          things.</p>

<p>green     Leaves, grass, frogs
          and other things it’s
          not easy being.
——–  ———————–</p>

<p>A horizontal rule follows.</p>

<hr />

<p>Here’s a definition list:</p>

<dl>
  <dt>apples</dt>
  <dd>Good for making applesauce.
oranges</dd>
  <dd>Citrus!
tomatoes</dd>
  <dd>There’s no “e” in tomatoe.</dd>
</dl>

<p>Again, text is indented 4 spaces. (Put a blank line between each
term/definition pair to spread things out more.)</p>

<p>Here’s a “line block”:</p>

<table>
  <tbody>
    <tr>
      <td>Line one</td>
    </tr>
    <tr>
      <td>Line too</td>
    </tr>
    <tr>
      <td>Line tree</td>
    </tr>
  </tbody>
</table>

<p>and images can be specified like so:</p>

<p><img src="example-image.jpg" alt="example image" title="An exemplary image" /></p>

<p>Inline math equations go in like so: $\omega = d\phi / dt$. Display
math should get its own line and be put in in double-dollarsigns:</p>

\[I = \int \rho R^{2} dV\]

<p>And note that you can backslash-escape any punctuation characters
which you wish to be displayed literally, ex.: `foo`, *bar*, etc.</p>
<div class="footnotes" role="doc-endnotes">
  <ol>
    <li id="fn:1" role="doc-endnote">
      <p>Footnote text goes here. <a href="#fnref:1" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
  </ol>
</div>

          ]]>
        </description>
        <pubDate>Fri, 27 Mar 2026 18:58:49 +0000</pubDate>
        <link>https://www.seosangwon.com/entry/foo/bar</link>
        <guid isPermaLink="true">https://www.seosangwon.com/entry/foo/bar</guid>
        
        
      </item>
    
      <item>
        <title>Baz</title>
        <description>
          <![CDATA[
            <p>this is baz
<img src="_assets/baz/20190504_215453.jpg" alt="alt text" /></p>

          ]]>
        </description>
        <pubDate>Fri, 27 Mar 2026 18:58:49 +0000</pubDate>
        <link>https://www.seosangwon.com/entry/foo/bar/baz</link>
        <guid isPermaLink="true">https://www.seosangwon.com/entry/foo/bar/baz</guid>
        
        
      </item>
    
      <item>
        <title>hello</title>
        <description>
          <![CDATA[
            <p>this is e
<img src="_assets/baz/2024-08-29-09-45-58.png" width="75%" /></p>

          ]]>
        </description>
        <pubDate>Fri, 27 Mar 2026 18:58:49 +0000</pubDate>
        <link>https://www.seosangwon.com/entry/foo/bar/d/e</link>
        <guid isPermaLink="true">https://www.seosangwon.com/entry/foo/bar/d/e</guid>
        
        
      </item>
    
      <item>
        <title>hello</title>
        <description>
          <![CDATA[
            <p>this is faz
<img src="_assets/baz/2024-08-29-09-45-58.png" width="75%" /></p>

          ]]>
        </description>
        <pubDate>Fri, 27 Mar 2026 18:58:49 +0000</pubDate>
        <link>https://www.seosangwon.com/entry/foo/bar/fa</link>
        <guid isPermaLink="true">https://www.seosangwon.com/entry/foo/bar/fa</guid>
        
        
      </item>
    
      <item>
        <title>hello</title>
        <description>
          <![CDATA[
            <p>this is fazz
<img src="_assets/baz/2024-08-29-09-45-58.png" width="75%" /></p>

          ]]>
        </description>
        <pubDate>Fri, 27 Mar 2026 18:58:49 +0000</pubDate>
        <link>https://www.seosangwon.com/entry/foo/bar/faz/fazz</link>
        <guid isPermaLink="true">https://www.seosangwon.com/entry/foo/bar/faz/fazz</guid>
        
        
      </item>
    
      <item>
        <title>hello</title>
        <description>
          <![CDATA[
            <p>this is fazzz
<img src="_assets/baz/2024-08-29-09-45-58.png" width="75%" /></p>

          ]]>
        </description>
        <pubDate>Fri, 27 Mar 2026 18:58:49 +0000</pubDate>
        <link>https://www.seosangwon.com/entry/foo/bar/faz/fazzz</link>
        <guid isPermaLink="true">https://www.seosangwon.com/entry/foo/bar/faz/fazzz</guid>
        
        
      </item>
    
      <item>
        <title>hello</title>
        <description>
          <![CDATA[
            <p>this is fiz
<img src="_assets/baz/2024-08-29-09-45-58.png" width="75%" /></p>

          ]]>
        </description>
        <pubDate>Fri, 27 Mar 2026 18:58:49 +0000</pubDate>
        <link>https://www.seosangwon.com/entry/foo/bar/fiz</link>
        <guid isPermaLink="true">https://www.seosangwon.com/entry/foo/bar/fiz</guid>
        
        
      </item>
    
      <item>
        <title>hello</title>
        <description>
          <![CDATA[
            <p>this is fozz
<img src="_assets/baz/2024-08-29-09-45-58.png" width="75%" /></p>

          ]]>
        </description>
        <pubDate>Fri, 27 Mar 2026 18:58:49 +0000</pubDate>
        <link>https://www.seosangwon.com/entry/foo/bar/fozz</link>
        <guid isPermaLink="true">https://www.seosangwon.com/entry/foo/bar/fozz</guid>
        
        
      </item>
    
      <item>
        <title>Go</title>
        <description>
          <![CDATA[
            <p>사이트맵 등록 됐으면</p>

          ]]>
        </description>
        <pubDate>Tue, 13 Feb 2024 00:00:00 +0000</pubDate>
        <link>https://www.seosangwon.com/entry/foo/go</link>
        <guid isPermaLink="true">https://www.seosangwon.com/entry/foo/go</guid>
        
        
      </item>
    
      <item>
        <title>hello</title>
        <description>
          <![CDATA[
            <p>Paragraphs are separated by a blank line.</p>

<p>2nd paragraph. <em>Italic</em>, <strong>bold</strong>, and <code class="language-plaintext highlighter-rouge">monospace</code>. Itemized lists
look like:</p>

<ul>
  <li>this one</li>
  <li>that one</li>
  <li>the other one</li>
</ul>

<p>Note that — not considering the asterisk — the actual text
content starts at 4-columns in.</p>

<blockquote>
  <p>Block quotes are
written like so.</p>

  <p>They can span multiple paragraphs,
if you like.</p>
</blockquote>

<p>Use 3 dashes for an em-dash. Use 2 dashes for ranges (ex., “it’s all
in chapters 12–14”). Three dots … will be converted to an ellipsis.
Unicode is supported. ☺</p>

<h2 id="an-h2-header">An h2 header</h2>

<p>Here’s a numbered list:</p>

<ol>
  <li>first item</li>
  <li>second item</li>
  <li>third item</li>
</ol>

<p>Note again how the actual text starts at 4 columns in (4 characters
from the left side). Here’s a code sample:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code># Let me re-iterate ...
for i in 1 .. 10 { do-something(i) }
</code></pre></div></div>

<p>As you probably guessed, indented 4 spaces. By the way, instead of
indenting the block, you can use delimited blocks, if you like:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>define foobar() {
    print "Welcome to flavor country!";
}
</code></pre></div></div>

<p>(which makes copying &amp; pasting easier). You can optionally mark the
delimited block for Pandoc to syntax highlight it:</p>

<div class="language-python highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kn">import</span> <span class="nn">time</span>
<span class="c1"># Quick, count to ten!
</span><span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">10</span><span class="p">):</span>
    <span class="c1"># (but not *too* quick)
</span>    <span class="n">time</span><span class="p">.</span><span class="n">sleep</span><span class="p">(</span><span class="mf">0.5</span><span class="p">)</span>
    <span class="k">print</span> <span class="n">i</span>
</code></pre></div></div>

<p><img src="_assets/bar/2024-09-02-10-22-41.png" width="75%" /></p>

<p><img src="../../../../assets/entry/bar/스크린샷 2025-02-02 153321.png" alt="alt text" />?
<img src="https://www.seosangwon.com/assets/entry/bar/%EC%8A%A4%ED%81%AC%EB%A6%B0%EC%83%B7%202025-02-02%20153321.png" alt="alt text" />
<img src="2025-04-16-12-40-32.png" alt="" /></p>

<p>나는 이것에 대해 크게 혼동할 수 밖에 없었다..</p>

<h3 id="an-h3-header">An h3 header</h3>

<p>Now a nested list:</p>

<ol>
  <li>
    <p>First, get these ingredients:</p>

    <ul>
      <li>carrots</li>
      <li>celery</li>
      <li>lentils</li>
    </ul>
  </li>
  <li>
    <p>Boil some water.</p>
  </li>
  <li>
    <p>Dump everything in the pot and follow
this algorithm:</p>

    <div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>find wooden spoon
uncover pot
stir
cover pot
balance wooden spoon precariously on pot handle
wait 10 minutes
goto first step (or shut off burner when done)
</code></pre></div>    </div>

    <p>Do not bump wooden spoon or it will fall.</p>
  </li>
</ol>

<p>Notice again how text always lines up on 4-space indents (including
that last line which continues item 3 above).</p>

<p>Here’s a link to <a href="http://foo.bar">a website</a>, to a <a href="local-doc.html">local
doc</a>, and to a <a href="#an-h2-header">section heading in the current
doc</a>. Here’s a footnote <sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote" rel="footnote">1</a></sup>.</p>

<p>Tables can look like this:</p>

<p>size  material      color
—-  ————  ————
9     leather       brown
10    hemp canvas   natural
11    glass         transparent</p>

<p>Table: Shoes, their sizes, and what they’re made of</p>

<p>(The above is the caption for the table.) Pandoc also supports
multi-line tables:</p>

<hr />
<p>keyword   text
——–  ———————–
red       Sunsets, apples, and
          other red or reddish
          things.</p>

<p>green     Leaves, grass, frogs
          and other things it’s
          not easy being.
——–  ———————–</p>

<p>A horizontal rule follows.</p>

<hr />

<p>Here’s a definition list:</p>

<dl>
  <dt>apples</dt>
  <dd>Good for making applesauce.
oranges</dd>
  <dd>Citrus!
tomatoes</dd>
  <dd>There’s no “e” in tomatoe.</dd>
</dl>

<p>Again, text is indented 4 spaces. (Put a blank line between each
term/definition pair to spread things out more.)</p>

<p>Here’s a “line block”:</p>

<table>
  <tbody>
    <tr>
      <td>Line one</td>
    </tr>
    <tr>
      <td>Line too</td>
    </tr>
    <tr>
      <td>Line tree</td>
    </tr>
  </tbody>
</table>

<p>and images can be specified like so:</p>

<p><img src="example-image.jpg" alt="example image" title="An exemplary image" /></p>

<p>Inline math equations go in like so: $\omega = d\phi / dt$. Display
math should get its own line and be put in in double-dollarsigns:</p>

\[I = \int \rho R^{2} dV\]

<p>And note that you can backslash-escape any punctuation characters
which you wish to be displayed literally, ex.: `foo`, *bar*, etc.</p>
<div class="footnotes" role="doc-endnotes">
  <ol>
    <li id="fn:1" role="doc-endnote">
      <p>Footnote text goes here. <a href="#fnref:1" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
  </ol>
</div>

          ]]>
        </description>
        <pubDate>Fri, 27 Mar 2026 18:58:49 +0000</pubDate>
        <link>https://www.seosangwon.com/entry/foo/hanguel/bar</link>
        <guid isPermaLink="true">https://www.seosangwon.com/entry/foo/hanguel/bar</guid>
        
        
      </item>
    
  </channel>
</rss>