aの書き方readme.md ファイル? (markdownファイル)
この記事では、markdownファイルとは何か、markdownファイルの書き方を学ぶことができます。 ほとんどの場合、このファイルはリモートリポジトリにあります。
とは何ですかreadme.md ファイル?
これは、ファイルといくつかのガイドの基本情報が含まれている単純なプレーンテキストファイルです。 では書き込むのに使用される一部のインストールガイドは基本文書内のプロジェクトをクリックします。 GitHub、gitlab、bitbucketのような最も人気のあるリポジトリプロバイダは、readme.md ファイル記述子としてのファイル。
マークダウンとは何ですか?,
取り消し線
単語や行をストライクしたい場合は、行の先頭と末尾に二つのチルダ記号を追加します。,
~~Strikethrough text~~
Images
You can add images in a markdown file by using the below tag.
!(TargetUrl)
Tables
You can write a table by using the below format of text.,
Quotes
If you want to write quotes the just add a >
symbol at the beginning of the line.
>Your quote looks like this.
Code
You can write code by appending ` symbol at the beginning and end of the line.,
コードブロック
あなたがしたい場合コードのブロックを書いてから、コードの開始と終了に“を追加します。
行の先頭にある“の後に言語を指定できます。,
```Language
your code
```
list
順序付けられたリスト、順序付けられていないリスト、および混合リストを記述できます。 リストの書き方は以下のフォーマットをご覧ください。,”e15c8b1bd4″>
Horizontal line
If you want to add a horizontal line in the markdown file then simply add ---
or ***
Note:
***
is for thicker line.,