[ en | ja ]

[ home | blog | progression ]

:: home / markdown review ::


heading 1

heading 2

heading 3

heading 4

heading 5
heading 6

paragraphs & text

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.


external link

internal link


blockquotes

single line blockquote

multi-line blockquote. second line continues here. third line too.

nested blockquote

inner level


lists

unordered

ordered

  1. first item
  2. second item
    1. nested ordered a
    2. nested ordered b
  3. third item

task list


code blocks

inline

use let x = 5; for variable declaration.

fenced (no language)

plain text code block
no syntax highlighting
  indented line

rust

fn main() {
    let name = "world";
    println!("Hello, {}!", name);
}

javascript

const greet = (name) => {
  console.log(`Hello, ${name}!`);
};

greet("world");

python

def greet(name: str) -> str:
    return f"Hello, {name}!"

print(greet("world"))

toml

[section]
key = "value"
number = 42
flag = true

shell

echo "hello world"
ls -la
git status

tables

header 1header 2header 3
cell acell bcell c
cell dcell ecell f
left alignedcenter alignedright aligned
leftcenterright
loremipsumdolor

horizontal rules

three ways:





images

alt text placeholder


footnotes

this sentence has a footnote.1

another sentence with a different footnote.2

1

this is footnote 1.

2

this is the named footnote.


definition lists

term 1 : definition for term 1

term 2 : first definition for term 2 : second definition for term 2


miscellaneous

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 >