私はテーブルを持っています:
| This | Is | A | Table |
| :--- | -- | - | ----: |
| foo | ba | r | elbaT |
テーブルを左揃えではなく、Markdownファイルの中央に表示したいのですが。テキストを揃えようとはしていませんが、テーブル全体を揃えようとしています。目的を達成するためにHTML/CSSに頼る必要がありますか?
これはApiary.ioプロジェクト用です。
Apiary.ioの問題のコメントでGaffneyが詳細に説明した私のソリューション 。
基本的に、apidown.apib HTMLブロック内にカスタムスタイルシートとスクリプトを追加して、Markdown di ale ct がCSSではないというヘッドウォールの代わりにHTMLでページをスタイルします。
また、 「CSSで何でもセンタリングする方法」 。
standardドキュメントを使用する場合は、<center>
タグは次のようになります。
FORMAT: 1A
Host: http://www.google.com
# Tables
Notes API is a *short texts saving* service similar to its physical paper presence on your table.
<center>
| Tables | Are | Cool |
|----------|:-------------:|------:|
| col 1 is | left-aligned | $1600 |
| col 2 is | centered | $12 |
| col 3 is | right-aligned | $1 |
</center>
# Group Notes
(...)
' 新しいドキュメント 'を使用する場合、テーブルを中央に配置することはできません (テーブルは列の幅全体を使用するため)。
はい。 APIブループリントでGFMテーブルを作成できます。ブループリントソースの以下のレンダリングバージョンについては、 http://docs.tables.apiary.io を確認してください。
FORMAT: 1A
# Tables API
Note: Tables can be handcrafted or generated at <http://www.tablesgenerator.com/markdown_tables>.
## Table 1
**Discussion option 1**
| Tables | Are | Cool |
|----------|:-------------:|------:|
| col 1 is | left-aligned | $1600 |
| col 2 is | centered | $12 |
| col 3 is | right-aligned | $1 |
# Message [/pages]
## Create a Message [POST]
### Table 2
**Discussion option 2**
| Tables | Are | Cool |
|----------|:-------------:|------:|
| col 1 is | left-aligned | $1600 |
| col 2 is | centered | $12 |
| col 3 is | right-aligned | $1 |
+ Request (application/json)
## Table 3
**Discussion option 3**
| Tables | Are | Cool |
|----------|:-------------:|------:|
| col 1 is | left-aligned | $1600 |
| col 2 is | centered | $12 |
| col 3 is | right-aligned | $1 |
+ Headers
Authorization:Bearer tokenString
+ Body
{ ... }
+ Response 201