Koki.
Back to blog

Markdown Writing Guide

1 min read

This post demonstrates the Markdown styles supported on this site. Use it as a reference when writing new posts.

Heading level 2

Heading level 3

Body text: bold, italic, strikethrough, inline code, and links.

Lists

Ordered list:

  1. First item
  2. Second item
  3. Third item

Unordered list:

  • Apple
  • Banana
  • Orange

Task list:

  • Set up the site
  • Write the first post
  • Ship it

Code blocks

Syntax highlighting with light and dark themes:

def fib(n: int) -> int:
    """Fibonacci sequence"""
    a, b = 0, 1
    for _ in range(n):
        a, b = b, a + b
    return a
# Command line works too
npm run dev

Tables

LanguageUse caseDifficulty
TypeScriptFrontend / full-stack★★★
PythonScripting / data★★
RustSystems / performance★★★★★

Quotes and dividers

Good writing is rewriting.


That covers every style this site supports — feel free to copy this document as a template for new posts.

koki.asia bootloader v1.0

0%

CLICK / ESC TO SKIP