Slightly remedy indentation

This commit is contained in:
2024-09-26 23:13:28 +02:00
parent 6c36a53ec9
commit 831ab700b9

View File

@@ -14,11 +14,15 @@ thumbnailImageFilename filename = do
makeImageHTML :: Token (FilePath, FilePath) -> DepGenM' Text
makeImageHTML t = do
(thumbnail, actual) <- untupleDepGenM t
appendTexts (inject "<p><a href=\"",
appendTexts (toText actual,
appendTexts (inject "\"><img src=\"",
appendTexts (toText thumbnail,
inject "\"></a></p>"))))
appendTexts (
inject "<p><a href=\"",
appendTexts (
toText actual,
appendTexts (
inject "\"><img src=\"",
appendTexts (
toText thumbnail,
inject "\"></a></p>"))))
handleRecipeDir :: Token FilePath -> Token Template -> Token FilePath -> Token FilePath -> DepGenM ()
handleRecipeDir outputDir template indexName dir = do