Tens City supports rich markdown formatting to help you create beautiful, engaging content.
You can use bold, italic, bold and italic, strikethrough, and inline code.
Headers create hierarchy in your documents:
// JavaScript example
function greet(name) {
console.log(`Hello, ${name}!`);
}
greet("World");
# Python example
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
print(fibonacci(10))
This is a blockquote. You can use it to highlight important information or quotes from other sources.
Blockquotes can span multiple paragraphs.
Create links with [text](url) syntax:
| Feature | Support | Notes |
|---|---|---|
| Headers | ✅ | H1-H6 supported |
| Lists | ✅ | Ordered and unordered |
| Code | ✅ | Inline and blocks |
| Tables | ✅ | Full support |
You can add horizontal rules to separate content:
Use asterisks or underscores for emphasis, and double asterisks or double underscores for strong emphasis.
These markdown features give you powerful tools to create rich, engaging blog posts. Mix and match them to create content that's both readable and visually appealing.
Happy writing! 📝