Baiju Muthukadan

Personal Blog

Sample Post with GitHub Flavored Markdown

Sample Post with GitHub Flavored Markdown

This is a sample post that demonstrates various features of GitHub Flavored Markdown (GFM).

Text Formatting

You can use bold, italic, or ~~strikethrough~~ text. You can also combine bold and italic formatting.

Lists

Unordered Lists

  • Item 1
  • Item 2
  • Nested item 1
  • Nested item 2
  • Item 3

Ordered Lists

  1. First item
  2. Second item
  3. Third item

Task Lists

  • Completed task
  • Incomplete task
  • Another task

Visit GitHub

Sample Image

Code Blocks

Inline code: const greeting = "Hello World";

// JavaScript code block
function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet("World"));
# Python code block
def greet(name):
    return f"Hello, {name}!"

print(greet("World"))

Tables

Name Age Occupation
John Doe 32 Developer
Jane Doe 28 Designer
Bob Smith 45 Project Manager

Blockquotes

This is a blockquote.

It can span multiple lines.

Horizontal Rule


Footnotes

Here's a sentence with a footnote. [^1]

[^1]: This is the footnote.

Emoji

😄 ❤ 🚀

Automatic URL Linking

Visit https://github.com for more information.

Conclusion

GitHub Flavored Markdown provides many useful features for creating rich documentation and content. This sample post demonstrates just some of the capabilities available to you.