diff options
author | stuebinm | 2021-03-07 22:32:54 +0100 |
---|---|---|
committer | stuebinm | 2021-03-07 22:32:54 +0100 |
commit | 09eeb58abb279e1049493460a7a99124aa4d9a78 (patch) | |
tree | 25750565c447763762b26ebe9b85f609f7482a26 /picarones-elm/src | |
parent | d8925def7fa6a359e11e612527d12a0280f44d84 (diff) |
add example pdftoppm command to the cover
Diffstat (limited to '')
-rw-r--r-- | picarones-elm/src/Cover.elm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/picarones-elm/src/Cover.elm b/picarones-elm/src/Cover.elm index 5c92e73..5c9d040 100644 --- a/picarones-elm/src/Cover.elm +++ b/picarones-elm/src/Cover.elm @@ -65,7 +65,9 @@ mkRemark prefix = let example = case prefix of "" -> "https://yourdomain.tld/path-to-slides/01.png" _ -> prefix ++ "01.png" in div [class "remark"] [ - text ("""Your slides should be available at the above uri, postfixed with a - double-digit number and a .png extension, e.g. """ ++ example ++ - " should contain an image.") + p [] [text ("""Your slides should be available at the above uri, postfixed with a + double-digit number and a .png extension, e.g. """ ++ example ++ + " should contain an image.")] + , p [] [text "You can convert a pdf to images like this:"] + , pre [] [text "pdftoppm -png slides.pdf -scale-to-y 1080 -scale-to-x -1 slide"] ] |