무료 온라인 JSON-Markdown 테이블 변환기
JSON 배열 데이터를 GitHub 스타일의 마크다운 테이블로 변환하여 README 파일, Wiki 및 이슈 댓글에 붙여넣을 수 있습니다. 각 객체는 행이 됩니다. 키는 열 헤더가 됩니다.
열 정렬을 선택하고 선택적으로 행 번호를 추가한 후 결과를 복사합니다. 중첩된 개체는 셀에서 JSON 문자열로 직렬화됩니다. 모든 처리는 귀하의 브라우저에서 이루어집니다.
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.