Here are some example markdown that is supported by Linkz.
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
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 are interactive checklists useful for tracking progress.
GFM supports tables for structuring data.
Feature | Supported? |
---|---|
Syntax Highlighting | β |
Task Lists | β |
Tables | β |
GFM allows various text formatting options:
**bold**
β bold*italic*
β italic~~strikethrough~~
Inline code
using backticks β console.log('Hello');
Inline code: Use backticks like console.log('Hello')
.
Multi-line code:
def greet(name):
print(f"Hello, {name}!")
greet("GitHub")
βMarkdown is awesome!β β Everyone
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! π