Sha256: 6c9b2f13452158d183e6df4901a8dcae16565f9fd9074a0cd344e2ad3165b2ea
Contents?: true
Size: 1.1 KB
Versions: 107
Compression:
Stored size: 1.1 KB
Contents
# Markdown Refactor a Markdown parser. The markdown exercise is a refactoring exercise. There is code that parses a given string with [Markdown syntax](https://guides.github.com/features/mastering-markdown/) and returns the associated HTML for that string. Even though this code is confusingly written and hard to follow, somehow it works and all the tests are passing! Your challenge is to re-write this code to make it easier to read and maintain while still making sure that all the tests keep passing. It would be helpful if you made notes of what you did in your refactoring in comments so reviewers can see that, but it isn't strictly necessary. The most important thing is to make the code better! ## Making the Test Suite Pass 1. Get [PHPUnit]. % wget --no-check-certificate https://phar.phpunit.de/phpunit.phar % chmod +x phpunit.phar 2. Execute the tests for an assignment. % phpunit.phar wordy/wordy_test.php [PHPUnit]: http://phpunit.de ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
107 entries across 107 versions & 1 rubygems