index

Markdown Style Guide

This theme does not define more levels of headlines. If needed, you can define them in src/styles/post.css.


Paragraph

Here’s a practical example of a paragraph in Markdown. This text demonstrates how content flows naturally in a blog post.

You can use various formatting options like bold, italic, strikethrough, and code within your paragraphs.

Blockquotes

Don’t communicate by sharing memory, share memory by communicating.
Rob Pike1

Ordered List

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

Unordered List

  • Item
    • Subitem
    • Subitem

Task List

  • First item
  • Second item
  • Third item

Image

To hide the caption, start it with an underscore _ or leave the alt text empty.

HIKARI
HIKARI

Tables

StyleWeightOther
NormalRegularText
ItalicBoldCode

Code Blocks

// Button.jsx

const Button = ({ text, onClick }) => {
  const [count, setCount] = useState(0)

  const handleClick = () => {
    setCount(count + 1)
    onClick?.()
  }

  return (
    <button className="btn" onClick={handleClick}>
      {text} ({count})
    </button>
  )
}

Other Elements — sub, sup, abbr, kbd, mark

H2O

Xn + Yn = Zn

GIF is a bitmap image format.

Press CTRL + ALT + Delete to end the session.

Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures.


Footnotes

  1. The above quote is excerpted from Rob Pike’s talk during Gopherfest, November 18, 2015.