JSON Markdown'a

JSON dizilerini, dokümanlar ve README dosyaları için Markdown tablolarına dönüştürün.

Ücretsiz Çevrimiçi JSON'dan Markdown Tablosuna Dönüştürücü

JSON dizi verilerini README dosyalarına, wiki'lere yapıştırabileceğiniz ve yorumları yayınlayabileceğiniz GitHub destekli Markdown tablolarına dönüştürün. Her nesne bir satıra dönüşür; anahtarlar sütun başlıklarına dönüşür.

Sütun hizalamasını seçin, isteğe bağlı olarak satır numaralarını ekleyin ve sonucu kopyalayın. İç içe geçmiş nesneler hücrelerde JSON dizeleri olarak serileştirilir. Tüm işlemler tarayıcınızda gerçekleşir.

Frequently Asked Questions

What JSON format produces a Markdown table?
An array of objects with consistent keys: [{"name": "Alice", "role": "Admin"}, {"name": "Bob", "role": "User"}]. Each object becomes a row; keys become column headers. All objects should share the same property names for clean columns.
Does the output work on GitHub?
Yes. Generated tables use standard GitHub Flavored Markdown syntax with pipe separators and a header row. They render correctly on GitHub, GitLab, Notion, and most Markdown editors.
Can I align columns?
Yes. Dokall supports left, center, and right column alignment using Markdown alignment syntax (:---, :---:, ---:). Alignment affects rendering in viewers that support it, like GitHub.
How are nested values displayed?
Nested objects and arrays are serialized as inline JSON strings within table cells. For readable nested data, flatten the JSON first or use separate tables for nested collections.
Can I add row numbers?
Yes. Enable the row numbers option to prepend a numbered index column. Useful for referencing specific rows in documentation or issue comments.