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

Version Path
trackler-2.2.1.23 tracks/php/exercises/markdown/README.md
trackler-2.2.1.22 tracks/php/exercises/markdown/README.md
trackler-2.2.1.21 tracks/php/exercises/markdown/README.md
trackler-2.2.1.20 tracks/php/exercises/markdown/README.md
trackler-2.2.1.19 tracks/php/exercises/markdown/README.md
trackler-2.2.1.18 tracks/php/exercises/markdown/README.md
trackler-2.2.1.17 tracks/php/exercises/markdown/README.md
trackler-2.2.1.16 tracks/php/exercises/markdown/README.md
trackler-2.2.1.15 tracks/php/exercises/markdown/README.md
trackler-2.2.1.14 tracks/php/exercises/markdown/README.md
trackler-2.2.1.13 tracks/php/exercises/markdown/README.md
trackler-2.2.1.12 tracks/php/exercises/markdown/README.md
trackler-2.2.1.11 tracks/php/exercises/markdown/README.md
trackler-2.2.1.10 tracks/php/exercises/markdown/README.md
trackler-2.2.1.9 tracks/php/exercises/markdown/README.md
trackler-2.2.1.8 tracks/php/exercises/markdown/README.md
trackler-2.2.1.7 tracks/php/exercises/markdown/README.md
trackler-2.2.1.6 tracks/php/exercises/markdown/README.md
trackler-2.2.1.5 tracks/php/exercises/markdown/README.md
trackler-2.2.1.4 tracks/php/exercises/markdown/README.md