BeaSkyblue

ネコでもわかる Markdown

· 3 min read

Headings

# 見出し1
## 見出し2
### 見出し3
#### 見出し4
##### 見出し5
###### 見出し6

見出し1

見出し2

見出し3

見出し4

見出し5
見出し6

Paragraphs and Line Breaks

これは1つ目の段落です。

これは2つ目の段落です。
段落は空行で区切られます。

これは3つ目の段落です。␣␣
行末にスペースを2つ入れると改行されます。

これは1つ目の段落です。

これは2つ目の段落です。 段落は空行で区切られます。

これは3つ目の段落です。
行末にスペースを2つ入れると改行されます。


Emphasis

標準

*斜体*

**太字**

***太字 + 斜体***

標準

斜体

太字

太字 + 斜体


Blockquotes

> 引用
> > 入れ子の引用

引用

入れ子の引用


Ordered Lists

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

Unordered Lists

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

Code

`console.log("Hello, world!")`

console.log("Hello, world!")


Code Blocks

```html
<html>
  <body>
    ...
  </body>
</html>
```
<html>
  <body>
    ...
  </body>
</html>

このサイトは [リンクテキスト](https://www.beaskyblue.com/) です。

このサイトは [リンクテキスト](https://www.beaskyblue.com/ "タイトル") です。

このサイトは リンクテキスト です。

このサイトは リンクテキスト です。


このサイトは [リンクテキスト][1] です。

このサイトは [リンクテキスト][2] です。

[1]: https://www.beaskyblue.com/
[2]: https://www.beaskyblue.com/ "タイトル"

このサイトは リンクテキスト です。

このサイトは リンクテキスト です。


URLs and Email Addresses

<https://beaskyblue.com>

<beaskyblue@example.com>

https://beaskyblue.com

beaskyblue@example.com


TODO 複雑なリスト!!!!!!!!!!!!!!

  1. Open the file.

  2. Find the following code block on line 21:

     <html>
       <head>
         <title>Test</title>
       </head>
    
  3. Update the title to match the name of your website.

Horizontal Rules

---


参考リンク