tl;dr
fix the broken numbering in the docs/.md files.
Context
When properly formatted, markdown converts this:
1. first item
- second item
- third item
to this:
- first item
- second item
- third item
There is a slight difference between how GitHub is parsing ordered lists and how the templating implementation being used in exercism.io is parsing/rendering it when those ordered lists include codefences.
Take for example who this:
https://github.com/exercism/xjava/blob/master/docs/INSTALLATION.md
varies from this:
http://exercism.io/languages/java/installing
The Work
Your mission (should you choose to accept it) is to figure out how to format the markdown in those files such that the numbering continues even after a codefence is included. (i.e. that it renders on the website the same way that GitHub renders it).
tl;dr
fix the broken numbering in the
docs/.mdfiles.Context
When properly formatted, markdown converts this:
to this:
There is a slight difference between how GitHub is parsing ordered lists and how the templating implementation being used in exercism.io is parsing/rendering it when those ordered lists include codefences.
Take for example who this:
varies from this:
The Work
Your mission (should you choose to accept it) is to figure out how to format the markdown in those files such that the numbering continues even after a codefence is included. (i.e. that it renders on the website the same way that GitHub renders it).