oleeskild / obsidian-digital-garden

MIT License
1.36k stars 124 forks source link

Find CRLF line endings (Windows) with regexes #625

Open davidkopp opened 2 months ago

davidkopp commented 2 months ago

Some of the used regex definitions only looked for \n (LF) and not for \r\n (CRLF). Because I'm using Windows and sometimes modify files with other editors it can happen that files are saved with CRLF line endings .

This PR changes the regexes that they find both, LF and CRLF.

Fixes #615