I am trying to generate a site that contains javadoc.
The structure looks like this:
|
|--com
| |--myproduct
| |--mypackage
| |--notgenerated.html
|--index.html
In the _site folder I get only
|
|--index.html
When I add a dummy file in the com directory
|
|--com
| |--myproduct
| | |--mypackage
| | |--notgenerated.html
| |--generated.html
|--index.html
The _site folder now looks like this
|
|--com
| |--generated.html
|--index.html
How can I get Jekyll to copy these deeply nested files to the _site directory without having to place dummy files in the intermediate directories?
I am using Ruby 1.9.1 with Jekyll 0.11.2 on Win7-x64.
_EXAMPLE
, need to be added to theinclude
section of_config.yml
. – Paul Wenzel