Skip to content

Commit

Permalink
fix: change markdown table rule to match standard (#134)
Browse files Browse the repository at this point in the history
Co-authored-by: Stefan Sydow <[email protected]>
  • Loading branch information
stsydow and stsydow authored Jun 30, 2021
1 parent 7797667 commit ae5bb20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export function Table({ headers = [], rowRenderer = () => [], data = [] }) {

export function TableHead({ headers = [] }) {
const header = `| ${headers.join(' | ')} |`;
const breaks = `|${Array(headers.length).fill('-|').join('')}`;
const breaks = `|${Array(headers.length).fill('---|').join('')}`;

return (
<>
Expand Down

0 comments on commit ae5bb20

Please sign in to comment.