<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://masavik.me/feed.xml" rel="self" type="application/atom+xml" /><link href="https://masavik.me/" rel="alternate" type="text/html" /><updated>2026-08-23T06:44:03+00:00</updated><id>https://masavik.me/feed.xml</id><title type="html">no more oops :)</title><subtitle>My experiments with me, myself and joy
</subtitle><author><name>Masavk LNU</name></author><entry><title type="html">Overview all components</title><link href="https://masavik.me/2026/04/01/overview.html" rel="alternate" type="text/html" title="Overview all components" /><published>2026-04-01T17:00:00+00:00</published><updated>2026-04-01T17:00:00+00:00</updated><id>https://masavik.me/2026/04/01/overview</id><content type="html" xml:base="https://masavik.me/2026/04/01/overview.html"><![CDATA[<p>This post is designed to stress-test your theme’s typography, spacing, and common Markdown elements. Use this page to ensure your margins, paddings, and font choices look professional across all screen sizes.</p>

<!--prettier-ignore-->
<ul id="markdown-toc">
  <li><a href="#1-heading-hierarchy" id="markdown-toc-1-heading-hierarchy">1. Heading Hierarchy</a>    <ul>
      <li><a href="#third-level-heading-h3" id="markdown-toc-third-level-heading-h3">Third-Level Heading (H3)</a>        <ul>
          <li><a href="#fourth-level-heading-h4" id="markdown-toc-fourth-level-heading-h4">Fourth-Level Heading (H4)</a>            <ul>
              <li><a href="#fifth-level-heading-h5" id="markdown-toc-fifth-level-heading-h5">Fifth-Level Heading (H5)</a></li>
            </ul>
          </li>
        </ul>
      </li>
    </ul>
  </li>
  <li><a href="#2-typography--inline-styles" id="markdown-toc-2-typography--inline-styles">2. Typography &amp; Inline Styles</a></li>
  <li><a href="#3-lists" id="markdown-toc-3-lists">3. Lists</a>    <ul>
      <li><a href="#unordered-list" id="markdown-toc-unordered-list">Unordered List</a></li>
      <li><a href="#ordered-list" id="markdown-toc-ordered-list">Ordered List</a></li>
    </ul>
  </li>
  <li><a href="#4-data-tables" id="markdown-toc-4-data-tables">4. Data Tables</a></li>
  <li><a href="#5-task-lists" id="markdown-toc-5-task-lists">5. Task Lists</a></li>
  <li><a href="#6-images-and-media" id="markdown-toc-6-images-and-media">6. Images and Media</a></li>
  <li><a href="#7-horizontal-rules" id="markdown-toc-7-horizontal-rules">7. Horizontal Rules</a></li>
</ul>

<hr />

<h2 id="1-heading-hierarchy">1. Heading Hierarchy</h2>

<p>Headings are the skeleton of your content. They should have distinct sizes and consistent vertical spacing.</p>

<h3 id="third-level-heading-h3">Third-Level Heading (H3)</h3>

<p>The H3 should feel like a clear subsection of the H2 above.</p>

<h4 id="fourth-level-heading-h4">Fourth-Level Heading (H4)</h4>

<p>Standard for deep dives or minor points.</p>

<h5 id="fifth-level-heading-h5">Fifth-Level Heading (H5)</h5>

<p>Rarely used, but should still be styled to look better than plain bold text.</p>

<h2 id="2-typography--inline-styles">2. Typography &amp; Inline Styles</h2>

<p>Good typography is about more than just a font. It’s about how different styles interact within a paragraph.</p>

<ul>
  <li>This is <strong>bold text</strong>, used for emphasis.</li>
  <li>This is <em>italicized text</em>, used for titles or subtle emphasis.</li>
  <li>Sometimes you need to <del>strike through</del> an old idea.</li>
  <li>Here is an <a href="https://google.com">external link to Google</a> to check your link colors and hover states.</li>
</ul>

<blockquote>
  <p><strong>The Blockquote Test:</strong>
“Design is not just what it looks like and feels like. Design is how it works.”
— <em>Steve Jobs</em></p>

  <p>Check if this quote has enough indentation, a distinct left border, or perhaps a slight background tint to make it stand out from the body text.</p>
</blockquote>

<div class="language-python highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c1">#!/usr/bin/python3
</span><span class="k">print</span><span class="p">(</span><span class="s">"HEY!"</span><span class="p">)</span>
</code></pre></div></div>

<h2 id="3-lists">3. Lists</h2>

<p>Lists can often have spacing issues, especially when nested.</p>

<h3 id="unordered-list">Unordered List</h3>

<ul>
  <li>The first main bullet point.</li>
  <li>The second main bullet point.
    <ul>
      <li>A nested sub-item (check the indentation!).</li>
      <li>Another nested sub-item with more text to see how it wraps around to the next line.</li>
    </ul>
  </li>
  <li>The final bullet point.</li>
</ul>

<h3 id="ordered-list">Ordered List</h3>

<ol>
  <li>First step in the process.</li>
  <li>Second step in the process.</li>
  <li>Third and final step.</li>
</ol>

<h2 id="4-data-tables">4. Data Tables</h2>

<p>Tables are often the “broken” element in responsive themes. Make sure this doesn’t overflow on mobile devices.</p>

<table>
  <thead>
    <tr>
      <th style="text-align: left">Project Name</th>
      <th style="text-align: center">Category</th>
      <th style="text-align: center">Status</th>
      <th style="text-align: right">Priority</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td style="text-align: left"><strong>Jekyll Theme</strong></td>
      <td style="text-align: center">Development</td>
      <td style="text-align: center">In Progress</td>
      <td style="text-align: right">High</td>
    </tr>
    <tr>
      <td style="text-align: left">SEO Audit</td>
      <td style="text-align: center"><em>Marketing</em></td>
      <td style="text-align: center">Completed</td>
      <td style="text-align: right">Medium</td>
    </tr>
    <tr>
      <td style="text-align: left">User Research</td>
      <td style="text-align: center">Design</td>
      <td style="text-align: center">Pending</td>
      <td style="text-align: right">Low</td>
    </tr>
    <tr>
      <td style="text-align: left">Bug Fixes</td>
      <td style="text-align: center">Maintenance</td>
      <td style="text-align: center">Ongoing</td>
      <td style="text-align: right"><strong>Critical</strong></td>
    </tr>
  </tbody>
</table>

<h2 id="5-task-lists">5. Task Lists</h2>

<p>Task lists are a GitHub-flavored Markdown favorite. Check the alignment of the checkboxes.</p>

<ul class="task-list">
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" checked="checked" />Initial theme setup</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" checked="checked" />Fixed Prettier TOC formatting issue</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Implement Dark Mode toggle</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Optimize image loading</li>
</ul>

<h2 id="6-images-and-media">6. Images and Media</h2>

<p>Images should be responsive—they should never be wider than their container.</p>

<p><img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Frlv.zcache.co.uk%2Fangry_linux_tux_penguin_classic_round_sticker-r05317b17680e4cd68dddd04b70d626c8_0ugmp_8byvr_630.jpg%3Fview_padding%3D%5B285%2C0%2C285%2C0%5D&amp;f=1&amp;nofb=1&amp;ipt=fc63f00a56322e1b46ac3e79fd20a949126f320243a52d757ef10db86cd11582" alt="Placeholder Image" />
<em>Figure 1: A caption for the image. Is the font smaller? Is it centered? Does it have enough top margin?</em></p>

<h2 id="7-horizontal-rules">7. Horizontal Rules</h2>

<p>The line below is a separator (<code class="language-plaintext highlighter-rouge">---</code>). It should be visible but not distracting.</p>

<hr />

<p><strong>End of Test Post.</strong> If everything looks aligned and the spacing feels “breathable,” your theme is in great shape!</p>]]></content><author><name>Masavk LNU</name></author><summary type="html"><![CDATA[This post is designed to stress-test your theme’s typography, spacing, and common Markdown elements. Use this page to ensure your margins, paddings, and font choices look professional across all screen sizes.]]></summary></entry><entry><title type="html">Headings and Table of Contents</title><link href="https://masavik.me/2026/04/01/toc.html" rel="alternate" type="text/html" title="Headings and Table of Contents" /><published>2026-04-01T08:00:00+00:00</published><updated>2026-04-01T08:00:00+00:00</updated><id>https://masavik.me/2026/04/01/toc</id><content type="html" xml:base="https://masavik.me/2026/04/01/toc.html"><![CDATA[<h2 id="table-of-contents">Table of Contents</h2>

<!--prettier-ignore-->
<ul id="markdown-toc">
  <li><a href="#table-of-contents" id="markdown-toc-table-of-contents">Table of Contents</a></li>
  <li><a href="#design-principles" id="markdown-toc-design-principles">Design Principles</a>    <ul>
      <li><a href="#visual-hierarchy" id="markdown-toc-visual-hierarchy">Visual Hierarchy</a></li>
      <li><a href="#typography-standards" id="markdown-toc-typography-standards">Typography Standards</a></li>
    </ul>
  </li>
  <li><a href="#technical-implementation" id="markdown-toc-technical-implementation">Technical Implementation</a>    <ul>
      <li><a href="#markdown-integration" id="markdown-toc-markdown-integration">Markdown Integration</a></li>
      <li><a href="#navigation-logic" id="markdown-toc-navigation-logic">Navigation Logic</a></li>
    </ul>
  </li>
  <li><a href="#final-summary" id="markdown-toc-final-summary">Final Summary</a></li>
</ul>

<h2 id="design-principles">Design Principles</h2>

<p>This section covers the core philosophy of the theme. The paragraph text here allows you to check the vertical rhythm between the H2 heading and the body copy, ensuring the padding is balanced.</p>

<h3 id="visual-hierarchy">Visual Hierarchy</h3>

<p>By using H3 subheadings, we create a nested structure. This paragraph demonstrates how the theme handles smaller headings and whether the font size feels distinct enough from the main body text.</p>

<h3 id="typography-standards">Typography Standards</h3>

<p>A good theme should provide clear contrast. This text helps you verify that the font weight and color provide a comfortable reading experience across different screen sizes.</p>

<h2 id="technical-implementation">Technical Implementation</h2>

<p>This second major section helps test how the theme handles repeated H2 elements. Consistency in spacing across multiple sections is key to a professional layout.</p>

<h3 id="markdown-integration">Markdown Integration</h3>

<p>Jekyll uses Kramdown to render these headings. This paragraph is a test for standard paragraph rendering under an H3, ensuring that margins don’t collapse or become too large.</p>

<h3 id="navigation-logic">Navigation Logic</h3>

<p>The Table of Contents at the top of the page links directly to these sections. You can use this area to test if the “jump-to” functionality works correctly and if your header offsets are configured.</p>

<hr />

<h2 id="final-summary">Final Summary</h2>

<p>This is the final H2 section. Use this paragraph to see how the theme concludes a post and how the bottom spacing interacts with your footer or “Next Post” navigation.</p>]]></content><author><name>Masavk LNU</name></author><summary type="html"><![CDATA[Table of Contents]]></summary></entry><entry><title type="html">Testing the Post Layout</title><link href="https://masavik.me/test/jekyll/2026/03/17/test-post-layout.html" rel="alternate" type="text/html" title="Testing the Post Layout" /><published>2026-03-17T12:00:00+00:00</published><updated>2026-03-17T12:00:00+00:00</updated><id>https://masavik.me/test/jekyll/2026/03/17/test-post-layout</id><content type="html" xml:base="https://masavik.me/test/jekyll/2026/03/17/test-post-layout.html"><![CDATA[<p>Welcome to the test post! This post is designed to test the layout and typography of the <strong>Monoholic</strong> theme. Here we have a quick introduction paragraph to see the line height, font size, and color of the default text.</p>

<h2 id="level-2-heading">Level 2 Heading</h2>

<p>This is a section with a level 2 heading. Let’s see how paragraphs are spaced out.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>

<h3 id="level-3-heading">Level 3 Heading</h3>

<p>Here is a level 3 heading, followed by an unordered list:</p>

<ul>
  <li>First item in the list</li>
  <li>Second item in the list
    <ul>
      <li>Nested item a</li>
      <li>Nested item b</li>
    </ul>
  </li>
  <li>Third item in the list</li>
</ul>

<p>And an ordered list:</p>

<ol>
  <li>Step one</li>
  <li>Step two</li>
  <li>Step three</li>
</ol>

<h4 id="code-and-blockquotes">Code and Blockquotes</h4>

<p>Let’s test inline code: <code class="language-plaintext highlighter-rouge">console.log("Hello, world!")</code>.</p>

<p>And a fenced code block:</p>

<div class="language-javascript highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kd">function</span> <span class="nx">greet</span><span class="p">(</span><span class="nx">name</span><span class="p">)</span> <span class="p">{</span>
  <span class="k">return</span> <span class="s2">`Hello, </span><span class="p">${</span><span class="nx">name</span><span class="p">}</span><span class="s2">! Welcome to the blog.`</span><span class="p">;</span>
<span class="p">}</span>
<span class="nx">console</span><span class="p">.</span><span class="nx">log</span><span class="p">(</span><span class="nx">greet</span><span class="p">(</span><span class="dl">"</span><span class="s2">World</span><span class="dl">"</span><span class="p">));</span>
</code></pre></div></div>

<p>Here’s a blockquote:</p>

<blockquote>
  <p>“Design is not just what it looks like and feels like. Design is how it works.”
<cite>— Steve Jobs</cite></p>
</blockquote>

<h2 id="links-and-images">Links and Images</h2>

<p>This is a <a href="/">link to the homepage</a>.</p>

<p>If there are images, they would go here:
<img src="https://cdn.freebiesupply.com/logos/large/2x/linux-tux-1-logo-png-transparent.png" alt="Placeholder Image" /></p>

<hr />

<p><strong>Conclusion:</strong>
Let’s see how this all renders. Thank you for testing the layout!</p>]]></content><author><name>Masavk LNU</name></author><category term="test" /><category term="jekyll" /><summary type="html"><![CDATA[Welcome to the test post! This post is designed to test the layout and typography of the Monoholic theme. Here we have a quick introduction paragraph to see the line height, font size, and color of the default text.]]></summary></entry></feed>