We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
GrayMatter is giving me the output for a previous input instead of the actual input. This Codesandbox behaves normally
import GrayMatter from "gray-matter"; console.log( GrayMatter( "---\nmarkmap:\n coloring: single\n---\n\n```markmap\n---\nmarkmap:\n height: 249\n---\n# Housework\n## Main\n- [x] Dishes\n- [ ] Cleaning the bathroom\n- [ ] Change the light bulbs\n- [ ] something else\n## [x] Also work on titles\n```\n\nd\n" ).data );
Output: { markmap: { coloring: 'single' }
{ markmap: { coloring: 'single' }
However, if I copy and paste the same code into my Electron console,
So far, I can't replicate this in a simpler form.
If I change one character in the input string, it returns a normal answer.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
GrayMatter is giving me the output for a previous input instead of the actual input.
This Codesandbox behaves normally
Output:
{ markmap: { coloring: 'single' }
However, if I copy and paste the same code into my Electron console,
So far, I can't replicate this in a simpler form.
If I change one character in the input string, it returns a normal answer.
The text was updated successfully, but these errors were encountered: