diff options
author | Fabian Kirchner <kirchner@posteo.de> | 2023-10-13 19:43:00 +0200 |
---|---|---|
committer | Fabian Kirchner <kirchner@posteo.de> | 2023-10-13 19:43:00 +0200 |
commit | e374dfe4a9e508d571ce50924d274a4390965189 (patch) | |
tree | 3cc55f1ee59a529c3864e0dc79eb96977a263b3f /app | |
parent | 8455c677b4d1773d31ec7650c09774c85a78458d (diff) |
render issue title as header
Diffstat (limited to 'app')
-rw-r--r-- | app/Main.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Main.hs b/app/Main.hs index bf8db29..947ab85 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -191,7 +191,8 @@ main = do sh_ ( P.setStdin ( String.fromString - ( T.unpack issue.title + ( "# " + ++ T.unpack issue.title ++ "\n\n" ++ fromMaybe "" (fmap T.unpack issue.description) ) |