-
Notifications
You must be signed in to change notification settings - Fork 2
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
Preserve Yaml structure #3
Comments
Looks like an issue with yaml.safe_load() call to read yaml file into python dict. There are two possible resolutions here -
Going with the 2nd approach as it looks safe. |
So, the issue was while writing to yaml file. Introduced a new dependency
|
@TenKenZero can we close this as well? since its fixed now. |
Yes! |
Currently, the application is changing the order of the YAML file's content when it introduces the description block.
This is the original YAML file:

This is the modified YAML with the documentation generated by the app:

We need to add the
description
section after thename
one and keep the other sections in the same order they had before running the app.The text was updated successfully, but these errors were encountered: