docpad-plugin-menu
docpad-plugin-menu copied to clipboard
A DocPad plugin for menu generation
https://github.com/sergeche/docpad-plugin-menu/issues/6
If `optimize` option set to `true` then there is no root index.html document in generated menu structure. But what if I need to include it?
when I change the flag `optimize` to **false** then the result from `generateMenu` become flat without any children.
I do some `console.log`s where `page` is the element of the result of the `generateMenu` function: `document.url` and `page.url` have the same value: **/website/de/index.html** but `page.state` is **false**
I'm currently evaluating DocPad and came across your plugin and emmet doc sample site. This looks like it works well for a single product documentation site but I have an...
See: bevry/docpad/issues/692
For me the skipfiles parameter (set in docpad.coffee) only works if i change `item.slug` variable in line 102 in menu.pugin.js: ``` javascript if ((_ref = options.skipFiles) != null ? _ref.test(item.slug)...