Post

Jekyll Components Demo

Jekyll Components Demo

Jekyll Components Demo

This post demonstrates all the components and Markdown syntax supported by Jekyll and the Chirpy theme.


Headings

H1 Heading

H2 Heading

H3 Heading

H4 Heading

H5 Heading
H6 Heading

Text Styling

  • Bold Text: This is bold
  • Italic Text: This is italic
  • Strikethrough: This is strikethrough
  • Combined: Bold and Italic

Lists

Unordered List

  • Item 1
  • Item 2
    • Sub-item 2.1
    • Sub-item 2.2
  • Item 3

Ordered List

  1. First item
  2. Second item
    1. Sub-item 2.1
    2. Sub-item 2.2
  3. Third item


Images

1
2
3
4
5
### Local Image
![Local Image Example](/assets/img/sample.jpg)

### External Image
![External Image Example](https://via.placeholder.com/300)

Code Blocks

Inline Code

Use code for inline code snippets.

Fenced Code Block

1
2
# Ruby Code Example
puts "Hello, Jekyll!"
This post is licensed under CC BY 4.0 by the author.

Trending Tags