40
22

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Markdownでtable作ってもうまく表示できない時

Last updated at Posted at 2016-11-23

Atomでは表示できたのに

Atomはtableを以下のように書いてもMarkdown Previewで表をうまく表示できます。

README.md
|Title|Type|Description|
|:-|:-|:-|
|table|string|テーブルを表示したい|

しかしこれだと、GitHubではうまく表を表示してくれません。Qiitaでも表示してくれないみたいですね。
Markdown Cheatsheetによれば、
tableを書きたいときはヘッダーのそれぞれのセルに最低3つダッシュが必要だそうです。

README.md
|Title|Type|Description|
|:---|:---|:---|
|table|string|テーブルを表示したい|

これでGitHubやQiitaでも表を表示できるようになります!

Title Type Description
table string テーブルを表示したい

参考サイト

Markdown Cheatsheet · adam-p/markdown-here Wiki

40
22
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
40
22

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?