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
The whole file is indent two spaces. Is it possible to remove those spaces?
So the file will not be longer:
--- param1: name: test
but
Even an Option to remove the trailing --- would be nice.
The text was updated successfully, but these errors were encountered:
I had a the same problem and I did it with regex, but maybe there is something else, better solution for it. ;)
Sorry, something went wrong.
I can see this isn't fixed yet. So just a quick regex replace (like @mrkitan's suggestion) for those who doesn't have time to wait/send a PR like me.
let yaml = YAML.stringify(this.matterObject).replace(/^[\s]{2}/gm,'');
No branches or pull requests
The whole file is indent two spaces.
Is it possible to remove those spaces?
So the file will not be longer:
but
Even an Option to remove the trailing --- would be nice.
The text was updated successfully, but these errors were encountered: