数理医科学研究センターのブログ

数理医研ブログ

未分類

Markdownの基本的な使い方

更新日:

Markdownで基本的な文法をまとめてみた。

見出し

# 見出しh1
## 見出しh2
### 見出しh3
#### 見出しh4
##### 見出しh5
###### 見出しh6

文字装飾

斜体

normal *italic* normal
normal _italic_ normal

normal italic normal
normal italic normal

強調

normal **bold** normal
normal __bold__ normal

normal bold normal
normal bold normal

斜体&強調

normal ***bold*** normal
normal ___bold___ normal

normal bold normal
normal bold normal

取り消し線

normal ~~strikethrough~~ normal

normal strikethrough normal

***
___
---



リスト

番号無しリスト

- アイテム1
  - アイテム1.1
  - アイテム1.2
- アイテム2
- アイテム3
  • アイテム1
    • アイテム1.1
    • アイテム1.2
  • アイテム2
  • アイテム3

番号付きリスト

1. アイテム1
  1. アイテム1.1
  1. アイテム1.2
1. アイテム2
1. アイテム3
  1. アイテム1
    1. アイテム1.1
    2. アイテム1.2
  2. アイテム2
  3. アイテム3

|ヘッダー1|ヘッダー2|ヘッダー3|
|:--|:--:|--:|
|左寄せ|中央寄せ|右寄せ|
|a|b|c|
ヘッダー1 ヘッダー2 ヘッダー3
左寄せ 中央寄せ 右寄せ
a b c
左寄せ 中央寄せ 右寄せ
a b c
左寄せ 中央寄せ 右寄せ
a b c

引用

> この文は引用です。
>
>> この文は引用の引用です。

この文は引用です。

この文は引用の引用です。

リンク

インラインリンク

[Google](https://google.com/)

Google

外部参照リンク

[Google][g]
[Yahoo][y]

[g]: https://google.com
[y]: https://www.yahoo.co.jp

Google
Yahoo

画像

![テキスト](画像のパス)

テキスト

コード(ハイライト表示)

```ruby
class Hello
  def say
    print 'hello'
  end
end
```
class Hello
  def say
    print 'hello'
  end
end

-未分類

Copyright© 数理医研ブログ , 2024 All Rights Reserved Powered by STINGER.