Site.Theme

Jekyll Documentation

Theme Information

This project uses the Minima theme.

  • Source: https://github.com/jekyll/minima
    • Version: https://github.com/jekyll/minima/tree/v2.5.1/
  • Preview: https://jekyll.github.io/minima/
  • Identifier: minima
  • Command: bundle info --path minima

Theme Demonstration

This is a preview for this site’s current theme.

Text Formatting

Text can be bold, italic, strike-through, underline, and ==highlighted==.

Note: Some of these formats (like “highlighted” and “underline”) depend on specific CSS rules which may or may not be present in all themes.

The Liquid syntax for internal links is verified at build time.

Paragraphs

There should be whitespace between paragraphs for clarity.

Consider adding a README or a file with information about your project for new visitors.

Headers

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6

Blockquotes

“Premature optimization is the root of all evil.” - Donald E. Knuth

Code Highlighting

C#:

using System;

namespace ThemeDemo
{
    public class Program
    {
        public static void Main(string[] args)
        {
            string name = args.Length > 0 ? args[0] : "World";
            Console.WriteLine($"Hello, {name}!");
        }
    }
}

Lists

Unordered

  • Item A
  • Item B
    • Sub-item 1
    • Sub-item 2

Ordered

  1. First
  2. Second
  3. Third

Task List

  • Completed task
  • Pending task

Tables

Title 1 Title 2 Title 3
Cell A1 Cell A2 Cell A3
Cell B1 Cell B2 Cell B3

Images

Small: Octocat

Large: Minimal Logo

Special Tags

Click to expand! This content is hidden by default. It's useful for FAQs or to hide spoilers!

Other Elements

Horizontal Lines


Definition List

Name
Godzilla
Born
1952
Birthplace
Japan

Preformatted Text

This is preformatted text. It respects both spaces and line breaks.

Image Alignment

You can control the alignment of an image by using HTML within your Markdown:

Centered Image:

Centered image

Left Aligned Image (default):

Left Aligned Image

Right Aligned Image:

Right aligned image

Inline Code

You can use backticks for inline code.

Embedded Content

Embed a YouTube video by using an iframe:

(Yes, that’s the famous Rickroll link!)

Footnotes

You can create a footnote by using [^1] inline and then defining the footnote at the end of your document:

Here’s a statement that requires clarification.1

Emoji

GitHub Pages supports emojis! Here are some examples:

  • :rocket:
  • :octocat:
  • :heart:

To use emojis, wrap the emoji code in colons. You can find a list of available emojis on the GitHub Emoji page.

Conclusion

Please note that not all of these features are standard Markdown. GitHub’s variant of Markdown (and some plugins for Jekyll) supports these additions. Ensure that your Jekyll setup on GitHub Pages can interpret them correctly. If you’re using a local Jekyll setup, ensure the necessary plugins are installed and configured.

Remember, the visual outcome depends on the specific theme’s CSS. Not all Markdown features may display as expected in every theme.

  1. This is the clarification for the statement.