bitBucketのREADMEをMarkDownで書く
gitBucketからbitBucketに載せ替えたときにせっかく書いたREADMEが崩れてしまった。。オゥ
若干(ホントに若干)書き方が違うらしいので、纏めました!
見出し
#で書く
# This is an H1
## This is an H2
###### This is an H6
#で書く
# This is an H1
## This is an H2
###### This is an H6
ラインで書く
This is also an H1
==================
This is also an H2
------------------
装飾
強調
イタリック体
*Italic characters*
_Italic characters_
イタリック体
*Italic characters*
_Italic characters_
太字
**bold characters**
__bold characters__
取り消し線
~~strikethrough text~~
リスト
* Item 1
* Item 2
* Item 3
* Item 3a
* Item 3b
* Item 3c
1. Step 1
2. Step 2
3. Step 3
1. Step 3.1
2. Step 3.2
3. Step 3.3
1. Step 1
2. Step 2
3. Step 3
* Item 3a
* Item 3b
* Item 3c
★数字はインクリメントされないみたい
コード
左に縦線が出る
> Neque porro quisquam est qui
> dolorem ipsum quia dolor sit amet,
> consectetur, adipisci velit...
左に縦線が出る
> Neque porro quisquam est qui
> dolorem ipsum quia dolor sit amet,
> consectetur, adipisci velit...
文章中
Use the backtick to refer to a `function()`.
There is a literal ``backtick()`` here.
頭に4スペース
This is a code block.
With multiple lines.
バッククォート3つ
```
This is a code block
```
言語を指定
```javascript
var oldUnload = window.onbeforeunload;
window.onbeforeunload = function() {
saveCoverage();
if (oldUnload) {
return oldUnload.apply(this, arguments);
}
};
```
リンク
This is [an example](http://www.example.com/) inline link.
[This link](http://example.com/ "Title") has a title attribute.
Links are also auto-detected in text: http://example.com/
This is [an example](http://www.example.com/) inline link.
[This link](http://example.com/ "Title") has a title attribute.
Links are also auto-detected in text: http://example.com/
テーブル
| Day | Meal | Price |
| --------|---------|-------|
| Monday | pasta | $6 |
| Tuesday | chicken | $8 |
| Day | Meal | Price |
| --------|---------|-------|
| Monday | pasta | $6 |
| Tuesday | chicken | $8 |
一先ず主要なものを纏めましたが、
時間があれば追記していきます!
Author And Source
この問題について(bitBucketのREADMEをMarkDownで書く), 我々は、より多くの情報をここで見つけました https://qiita.com/taro_dev/items/565511f58d0cd313e461著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .