Wiki's don't number properly when indenting code block

When writing a wiki post, it does not number appropriately

for example:

  1. Test 1
  var t = 5;
  1. Test 2

1. Test 1

  ```javascript
    var t = 5;
  ```

2. Test 2

I indented the code block, so the numbering would continue. GitLab Markdown doesn't seem to pick this up.

GitHub does this correctly, which makes migration difficult. This is how I expect it to render:

Screen_Shot_2015-09-28_at_10.40.47_AM