Markdown

Published at 2026/03/27

Markdown

引用

The secret to creativity is knowing how to hide your sources.

Albert Einstein

以下どちらでも同じ

書き方1

> The secret to creativity is knowing how to hide your sources. 
> 
> -- <cite>[Albert Einstein](http://www.quotedb.com/quotes/2112)</cite>

書き方2

> The secret to creativity is knowing how to hide your sources. 
> 
> -- <cite>[Albert Einstein][1]</cite>

[1]: http://www.quotedb.com/quotes/2112

コードブロック

def hello
  puts "Hello, world!"
end

書き方

  ```ruby
  def hello
    puts "Hello, world!"
  end
  ```

脚注

本文中に脚注をつけたい箇所1に番号を振ります。

書き方

本文中に脚注をつけたい箇所[^1]に番号を振ります。

[^1]: これが脚注の内容です。
  1. これが脚注の内容です。