This article demonstrates all supported markdown features for Nosible research articles.
Text Formatting
Bold text and italic text can be combined for bold italic.
You can also use strikethrough and inline code formatting.
This is a blockquote. It can span multiple lines and is useful for highlighting important quotes or notes.
— Someone Important
Headings
Headings from H2 to H6 are supported (H1 is reserved for the article title).
H3 Subheading
H4 Subheading
H5 Subheading
H6 Subheading
Lists
Unordered List
- First item
- Second item
- Nested item
- Another nested item
- Third item
Ordered List
- First step
- Second step
- Sub-step A
- Sub-step B
- Third step
Task List
- Completed task
- Incomplete task
- Another task
Links and Images
Code Blocks
Python
def calculate_sentiment(text: str) -> float:
"""Calculate sentiment score for given text."""
scores = analyze(text)
return sum(scores) / len(scores)
result = calculate_sentiment("Market looks bullish!")
print(f"Sentiment: {result:.2f}")
TypeScript
interface Signal {
symbol: string;
score: number;
timestamp: Date;
}
const processSignal = (signal: Signal): boolean => {
return signal.score > 0.5;
};
JSON
{
"model": "ensemble-v2",
"signals": ["sentiment", "momentum", "volume"],
"threshold": 0.75
}
Tables
Tables can be created using markdown or HTML.
Markdown Table
| Model | Accuracy | Latency | Status |
|---|---|---|---|
| GPT-4 | 94.2% | 120ms | Active |
| Claude | 93.8% | 95ms | Active |
| Ensemble | 96.1% | 180ms | Beta |
| Model | Accuracy | Latency | Status |
|---|---|---|---|
| GPT-4 | 94.2% | 120ms | Active |
| Claude | 93.8% | 95ms | Active |
| Ensemble | 96.1% | 180ms | Beta |
Horizontal Rule
Content above the rule.
Content below the rule.
Mermaid Diagrams
Diagrams are generated from .mmd files in src/astro/content/diagrams/ using bun run diagrams.
Flowchart
Sequence Diagram
State Diagram
Images


Footnotes
Here is a statement with a footnote1.
Another statement with a different footnote2.
Summary
This article covers:
- Text formatting — bold, italic, strikethrough, inline code
- Structure — headings, lists, blockquotes, horizontal rules
- Code — syntax-highlighted code blocks
- Data — tables with alignment
- Diagrams — Mermaid flowcharts, sequences, ERDs, state diagrams, and more