Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Two small bugfixes for parser #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

markkane
Copy link

fix paths issue on windows systems,
fix parser breaking MD files without header section

fix parser breaking MD files without header section
@@ -86,7 +86,7 @@ function splice(cont, idx, rem, str) {
}

function getHeaders(content) {
const index = content.indexOf("---", 1) + "---".length;
const index = content.indexOf("---") < 0 ? 0 : content.indexOf("---", 1) + "---".length;
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If a MD file has no header section this line could cause breaking changes to the file. If the file has no header the slice index should be 0.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant