Created
October 26, 2014 17:21
-
-
Save jtackett/d91a295cbd01c1fb20de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gather input: | |
__________________ | |
(form/form-to [:post "/your-pdf"] | |
(form/file-upload "file") [:br] | |
(form/submit-button "Upload a PDF")) | |
Post to handler which sends the uploaded file to be read and displayed: | |
______________________ | |
(POST "/your-pdf" [file] (views/display-pdf (pdf/pull-text-from-file file))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment