Introduction
This is the introduction to my first post on DEV.to. Content is written in Markdown.
Core Concepts
You can use standard formatting:
-
Bold text with
**Bold text**
-
Italic text with
*Italic text*
-
Links to other sites with
[Link text](URL)
Code Blocks
For code, use triple backticks and specify the language for syntax highlighting.
javascript
// This is a JavaScript code block
function greet(name) {
console.log(`Hello, ${name}!`);
}
greet('World');
Top comments (0)