### Summary In MarkDown, the number supplied in the numbered list will not be adhered to when rendering. ### Code snippet that reproduces the problem Given the following MarkDown: ``` 1. First 2. Second Intermediary text or image. 3. Third ``` The rendered HTML output produces a numbered list where the numbered list item 3 is given the number 1: ``` 1. First 2. Second Intermediary text or image. 1. Third ``` ### Expected output As rendered HTML numbered list: ``` 1. First 2. Second Intermediary text or image. 3. Third ```