Consider the following config:
{
"source": "./",
"destination": "./docs",
"plugins": [{
"name": "esdoc-standard-plugin",
"option": {
"manual": {
"index": "./API.md",
"files": [
"./foo/README.md",
"./bar/README.md"
]
}
}
}]
}
The following config will generate the same file ./manual/README.md twice and therefore will overwrite each other.
Consider the following config:
{ "source": "./", "destination": "./docs", "plugins": [{ "name": "esdoc-standard-plugin", "option": { "manual": { "index": "./API.md", "files": [ "./foo/README.md", "./bar/README.md" ] } } }] }The following config will generate the same file
./manual/README.mdtwice and therefore will overwrite each other.