mirror of
https://github.com/github/semantic.git
synced 2024-12-19 12:51:52 +03:00
Concat the columns.
This commit is contained in:
parent
78d077b2fd
commit
8d7ebed794
@ -53,7 +53,7 @@ data Row = Row [HTML] [HTML]
|
||||
deriving Eq
|
||||
|
||||
instance Show Row where
|
||||
show (Row left right) = tag "tr" (tag "td" $ show <$> left) (tag "td" $ show <$> right)
|
||||
show (Row left right) = tag "tr" $ (tag "td" . concat $ show <$> left) ++ (tag "td" . concat $ show <$> right)
|
||||
|
||||
bimap :: ([HTML] -> [HTML]) -> ([HTML] -> [HTML]) -> Row -> Row
|
||||
bimap f g (Row a b) = Row (f a) (g b)
|
||||
|
Loading…
Reference in New Issue
Block a user