amyreese / markdown-pp

Preprocessor for Markdown files to generate a table of contents and other documentation needs
MIT License
309 stars 68 forks source link

Fix regex for INCLUDECODE #50

Closed zgrannan closed 6 years ago

zgrannan commented 6 years ago

As the regex was written previously, the line range for INCLUDECODE could only include a single numerical digit. As a result ranges like 1:10 would not parse.

This commit is intended to address that issue.

amyreese commented 6 years ago

Thanks!