thephpleague / html-to-markdown

Convert HTML to Markdown with PHP
MIT License
1.77k stars 204 forks source link

Convert lists from two space indentation to four space indentation #211

Closed reinink closed 3 years ago

reinink commented 3 years ago

This PR updates this library to use four spaces for list indentation instead of two spaces. The primary motivation for this is to make this markdown compatible with commonmark — which expects four spaces.

# Before

- red
- green
  - turquoise
  - teal
  - forest
- blue

# After

- red
- green
    - turquoise
    - teal
    - forest
- blue