Cosmin Popovici

Results 167 comments of Cosmin Popovici

You're right, the docs were wrong - updated them now. Btw the `plaintext: true` in Front Matter also doesn't work right now, I'll look into fixing this next week.

Fixed in 4.2.0: https://github.com/maizzle/framework/releases/tag/v4.2.0

Looks like it's an issue with a regex in `posthtml-match-helper`: ``` SyntaxError: Invalid regular expression: /(?:^|\s)prose :where(ul ul(?:\s|$)/: Unterminated group at :336:1 at new RegExp () at expandMatcher (maizzle\node_modules\posthtml-match-helper\index.js:35:24) at...

So the reason this fails is that it tries to clean up and remove classes that it may have inlined, but actually those classes have not really been inlined by...

Related issues, also caused by `removeInlinedClasses`: #745 #728

OK, this should work now in v4.1.2, give it a try :) https://github.com/maizzle/framework/releases/tag/v4.1.2

Converting this into a discussion for now, as it'll be a while until we can add proper ES modules support, given the state of the ecosystem and the dependencies in...

Are you using yarn by any chance? Line endings are automatically handled by npm, but not by yarn. Might also be related to how Git is set up on your...

I don't know if yarn can do this, but you can change the line endings with something like [dos2unix-cli](https://www.npmjs.com/package/dos2unix-cli): ``` npm install -g dos2unix-cli dos2unix path/to/the/maizzle/bin ```

Think it's how your Git is checking out those files, as you can see above they're both `LF` in the repo. You could also check if `autocrlf` is set to...