← Back to posts

Sample Blog Post

This is a sample blog post written in markdown. It demonstrates various markdown features:

Headers

H3 Header

H4 Header

Lists

  • Item 1
  • Item 2
  • Item 3
  1. Numbered item 1
  2. Numbered item 2
  3. Numbered item 3

Code Blocks

Here's a code block with a long line that should scroll horizontally:

def process_data(input_data, transformation_function, output_format="json", debug_mode=False, logging_level="INFO", retry_count=3, timeout_seconds=30, validation_schema="default_schema.json", cache_enabled=True, performance_metrics=True):
    """
    This is a very long function definition that demonstrates horizontal scrolling in code blocks.
    """
    return transformed_data

Long URLs and Inline Code

Here's a very long URL that should wrap: https://example.com/very/long/url/path/that/should/wrap/on/mobile/devices/and/smaller/screens/without/breaking/the/layout/or/causing/horizontal/scrolling/issues/when-displayed-in-the-blog-post

Here's another example with a long URL in a regular link: Click here to visit a very long URL

Emphasis

Italic text and bold text

Links

Visit my GitHub

Images

Sample Image

Blockquotes

This is a blockquote. It can be used to highlight important information or quotes.

Tables

Header 1Header 2
Cell 1Cell 2
Cell 3Cell 4

Wide Code Block Example

const configuration = {
    apiEndpoint: "https://api.example.com/v1/data",
    authentication: {
        type: "OAuth2",
        clientId: "abcdef123456789",
        clientSecret: "very-long-secret-key-that-should-cause-horizontal-scrolling",
        scopes: ["read", "write", "admin"],
        redirectUri: "https://app.example.com/auth/callback"
    },
    database: {
        host: "db.example.com",
        port: 5432,
        username: "admin",
        password: "super-secure-password-123",
        connectionPool: 10,
        timeout: 30000
    }
};