I've noticed this with both [Hugo](https://gohugo.io/) and [Live Markdown](https://dmitri.shuralyov.com/projects/live-markdown/live-markdown.html), but deep nested lists don't produce the results I'd expect to see based on other Markdown parsers. The following Markdown: ``` * Outer * Nested * Inner ``` Is output as: ``` • Outer ◦ Nested ◦ Inner ``` But I'd expect to see: * Outer * Nested * Inner