# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
*Italics*
**Bold text**
***Bold and Italics***
~~Striked Text~~
斜体
大胆なテキスト
大胆で斜体
ストリックテキスト
順序付けられていないリスト
* list1
* list2
* sublist1
* sublist2
注文リスト
1. First
2. Second
3. Third
1. Three / One
2. Three / Two
4. Fourth
* [This is a link to GitHub](https://github.com "GitHub Home Page")
* <https://www.google.com/>

リンクと同じですが、正方形のブラケットを開く前にexlamationマーク(!)を追加します。
正方形のブラケットには画像用のaltが含まれており、括弧内に画像ソースが含まれています。
画像ソースは、ローカルマシンの場所または有効な画像URLのいずれかです。
最後の部分には、ホーバーを使用するときに示されている画像に関する追加情報が含まれています。
画像がクリックされたときに別のWebページを開くには、ブラケットの画像のマークダウンを囲み、括弧でリンクを追加します。
[](https://github.com/)
Markdownに沿ってHTMLを使用して、画像を簡単に変更します。
<img src="https://cdn4.iconfinder.com/data/icons/iconsimple-logotypes/512/github-512.png" height="50%" width="50%">
height=""およびwidth=""を使用することにより、画像を簡単にサイズ変更できます。この例では、50%を使用したため、画像サイズは画像の50%に減少しました。
|Header1|Header2|Header3|
| --- | --- | --- |
| This | is a | table |
| This | is 2nd | row |
| This | is 3rd | row |
| ヘッダー1 | Header2 | Header3 |
|---|---|---|
| これ | aです | テーブル |
| これ | 2番目です | 行 |
| これ | 3番目です | 行 |
* [ ] Checkbox1
* [ ] Checkbox2
* [x] Checkbox selected
or
- [ ] Checkbox1
- [ ] Checkbox2
- [x] Checkbox selected
チェックボックス1
チェックボックス2
選択したチェックボックス
- [ ]または* []を使用しても違いはありません。同じチェックボックスが表示されます。両方を使用できます。
> This is a block quoted text
これはブロック引用テキストです
***
___
---
3つすべてが次のようにレンダリングされます。
マークダウンにコードを追加するには、3つの方法があります
`this` is an example of inline code.
'''
console.log('Used backticks to show snippets')
'''
console.log('four whitespace works too!')
this 、インラインコードの例です。
console.log('Used backticks to show snippets')
console.log('four whitespace works too!')
最初のバックテックセットの終了後に言語名が記載されている場合、コードスニペットは言語に従って強調表示されます。
```js
console.log('javascript')
```
```python
print('python')
```
```java
System.out.println('java')
```
```json
{
"firstName": "Kaushal",
"lastName": "Joshi
"age": 18
}
```
JavaScriptプログラミング構文
console . log ( 'javascript' )Cプログラミング構文
printf ( "Hello World!n" );Pythonプログラミング構文
print ( 'python' )Javaプログラミング構文
System . out . println ( 'java' )JSONプログラミング構文
{
"firstName" : " Kaushal " ,
"lastName" : " Joshi " ,
"age" : 18
}XMLプログラミング構文
< Person >
< FirstName >
Anurag
</ FirstName >
< LastName >
P
</ LastName >
</ Person > *This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__
_You **can** combine them_
このテキストはイタリックになりますこれもイタリックになります
このテキストは大胆になりますこれも大胆です
それらを組み合わせることができます
追加できます
<br>
休憩を挿入するための線の間
このテキストには、2番目の部分が作成される間に休憩があります
次の行に書かれます。