‹ Home

πŸš€ Exploring Markdown

Here are some example markdown that is supported by Linkz.

Links

Internal Links (absolute or relative paths) will not open in a new tab.

External Links (starting with https:// or http://) would open in a new tab.

URL like links are automatically linked

🎨 Syntax Highlighting

GFM allows syntax highlighting for code blocks using triple backticks (```) followed by the language name.

const greet = (name) => {
  console.log(`Hello, ${name}!`);
};

greet("GitHub");

βœ… Task Lists

Task lists are interactive checklists useful for tracking progress.

πŸ“Š Tables

GFM supports tables for structuring data.

Feature Supported?
Syntax Highlighting βœ…
Task Lists βœ…
Tables βœ…

✍️ Text Formatting

GFM allows various text formatting options:

πŸ–₯ Code Blocks

Inline code: Use backticks like console.log('Hello').

Multi-line code:

def greet(name):
    print(f"Hello, {name}!")

greet("GitHub")

πŸ—¨ Block Quotes

β€œMarkdown is awesome!” – Everyone

🎯 Conclusion

GitHub-Flavored Markdown enhances the standard Markdown syntax with extra features, making it a powerful tool for developers, technical writers, and documentation enthusiasts. Give it a try in your next project! πŸš€

Powered by linkz