Skip to content

Instantly share code, notes, and snippets.

@jtackett
Created October 26, 2014 17:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jtackett/d91a295cbd01c1fb20de to your computer and use it in GitHub Desktop.
Save jtackett/d91a295cbd01c1fb20de to your computer and use it in GitHub Desktop.
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