[ en | ja ]
[ home | blog | progression ]
:: home / markdown review ::
plain paragraph text. lorem ipsum dolor sit amet, consectetur adipiscing elit. sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
second paragraph with bold text, italic text, bold and italic, and strikethrough.
inline code snippet in a sentence.
single line blockquote
multi-line blockquote. second line continues here. third line too.
nested blockquote
inner level
use let x = 5; for variable declaration.
plain text code block
no syntax highlighting
indented linefn main() {
let name = "world";
println!("Hello, {}!", name);
}const greet = (name) => {
console.log(`Hello, ${name}!`);
};
greet("world");def greet(name: str) -> str:
return f"Hello, {name}!"
print(greet("world"))[section]
key = "value"
number = 42
flag = trueecho "hello world"
ls -la
git status
| header 1 | header 2 | header 3 |
|---|---|---|
| cell a | cell b | cell c |
| cell d | cell e | cell f |
| left aligned | center aligned | right aligned |
|---|---|---|
| left | center | right |
| lorem | ipsum | dolor |
three ways:
this sentence has a footnote.1
another sentence with a different footnote.2
this is footnote 1.
this is the named footnote.
term 1 : definition for term 1
term 2 : first definition for term 2 : second definition for term 2
superscript: x^2^ + y^2^
subscript: H~2~O
highlight: ==highlighted text==
keyboard: press Ctrl + C
abbreviation: the HTML spec is maintained by W3C.
*[HTML]: HyperText Markup Language *[W3C]: World Wide Web Consortium
< home >