Skip to content

Commit

Permalink
変更
Browse files Browse the repository at this point in the history
  • Loading branch information
jageishi committed Aug 19, 2021
1 parent eef3feb commit 7bcae3e
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions Dangerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ fail("fail-2")
fail("fail-3")
fail("fail", file: "Dangerfile", line: 14)

markdown("## h2\n\n")
markdown("### h3\n\n")
markdown("|テーブル|\n")
markdown("| --- |\n")
markdown("| aaa |\n")
markdown("| bbb |\n")
markdown("| ccc |\n")
markdown("## h2")
markdown("### h3")

table_header = "|テーブル|\n| --- |\n"
table_body = ["aaa", "bbb", "ccc"].map { |s| "| #{s} |\n"}.join
markdown(table_header + table_body)

0 comments on commit 7bcae3e

Please sign in to comment.