-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Description
I'm embarking on a new, fairly large, project that will be using jsDoc, and I'm reluctant to create a separate json file for each markdown tutorial file. It seems a bit tedious and also hard to work with.
My preference would be for a single json file, say tutorials.conf.json, that I could put into my tutorial directory and use to organize my tutorials via structured json objects, with the property names being the identifier for each tutorial. I'm thinking something along the lines of
{
"sometopic" : {
"title" : "Some Topic!",
"children" : [
"sometopicchild",
"someothertopicchild"
]
},
"anothertopic" : {
"title" : "etc"
}
}
Is there some reason such a system would not be advised?
If it seems like a feasible possibility (maybe as an alternative syntax, keeping the current) I'm happy to try my hand at a bit of patching, though any recommendations on approach or places to look would be welcomed.