# 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! ## Hints For this exercise the following C# feature comes in handy: - [String Interpolation](https://msdn.microsoft.com/en-us/library/dn961160.aspx) (C# 6 and up). ### Submitting Exercises Note that, when trying to submit an exercise, make sure the exercise file that you're submitting is in the `exercism/csharp/markdown` directory. ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.