メッセージ

2018年08月10日の記事

2018/08/10(金)adiaryはMarkdownで記述できるCMSです

2018/10/26 13:30

GitHub Flavored Markdownで記述できます

見出し

本文ですよ

  • これはリスト
  • これもリスト
    • ここは入れ子のリスト

数字のリスト

  1. 1番目
  2. 2ばんめ
  3. 3ばんめ

プログラムコードの記述ももちろん対応

CのHello world

#include <stdio.h>

main( )
{
  printf("hello, world\n");
}

shell scriptのHello world

#!/bin/sh

echo "Hello, world"
exit 0

インラインのcode

  • This is a list item with two paragraphs.

    This is the second paragraph in the list item. You're only required to indent the first line. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.

  • Another item in the same list.