Skip to content

Latest commit

 

History

History
2 lines (2 loc) · 384 Bytes

README.md

File metadata and controls

2 lines (2 loc) · 384 Bytes

ruby-on-rails

Creation of a Ruby on Rails application with the following 2 endpoints: POST /documents This endpoint should take Markdown as input. The endpoint should return the HTML-version of the input Markdown, alongside an ID for the document. GET /documents/:id This endpoint should look up previously created documents by ID and return the same HTML as with POST /documents.