Tag: Test Blog

  • Test Blog Written by Dhruv Parmar

    Test Blog Written by Dhruv Parmar

    Welcome to the Blog

    Welcome to the very first post on rushabhahir.com. This is a sample Markdown file designed to test how different content blocks render on the website.


    Formatting Examples

    Here is a quick rundown of how various Markdown elements look. We can use italics for emphasis, bold text for strong importance, and even combine both for maximum effect.

    If we need to strike something out, we use strikethrough.

    Lists

    Unordered List:

    • First item
    • Second item
      • Nested item A
      • Nested item B
    • Third item

    Ordered List:

    1. Step one
    2. Step two
    3. Step three

    Blockquotes

    Sometimes you need to highlight a quote or a special note:

    "The best time to plant a tree was 20 years ago. The second best time is now."
    Chinese Proverb

    Code Snippets

    If you are writing about technology, you might want to share some code.

    Inline code: You can use console.log('Hello World!'); directly in a sentence.

    Code Block:

    // A simple JavaScript function
    function greetVisitor(name) {
        if (name) {
            return `Welcome to rushabhahir.com, ${name}!`;
        }
        return 'Welcome to my website!';
    }
    
    console.log(greetVisitor('Friend'));