I only want to create a .md folder for each .schema.json file that exists. I don't want a file for each individual file
I also don't want to create numerated files for files with the same prefixes
e.g
foo.bar.schema.json
foo.bar-2.schema.json
will create
foo-1.md
foo-2.md
as well as separate files for all the individual properties of the schema.
I want a way to create
foo.bar.md
foo.bar-2.md
with no other files for their definitions/properties
If I have 100+ json schema I do not want 400+ files representing all the individual properties, I want a 1-1 schema to .md ratio
I only want to create a .md folder for each .schema.json file that exists. I don't want a file for each individual file
I also don't want to create numerated files for files with the same prefixes
e.g
foo.bar.schema.json
foo.bar-2.schema.json
will create
foo-1.md
foo-2.md
as well as separate files for all the individual properties of the schema.
I want a way to create
foo.bar.md
foo.bar-2.md
with no other files for their definitions/properties
If I have 100+ json schema I do not want 400+ files representing all the individual properties, I want a 1-1 schema to .md ratio