I have a Middleman project structured like this (I removed most files because there’s 800 of them)
.
├── config.rb
├── data
│ └── i18n.yaml
├── source
│ ├── 404.html
│ ├── crossdomain.xml
│ ├── css
│ │ └── screen.css.sass
│ ├── docs
│ │ ├── ATS.html.markdown
│ │ ├── CHICKEN.html.markdown
│ │ ├── CONTRIBUTING.markdown
│ │ ├── LOLCODE.html.markdown
│ │ ├── ada.html.markdown
│ │ ├── amd.html.markdown
│ │ ├── angularjs.html.markdown
│ │ ├── ansible.html.markdown
│ │ ├── ar-ar
│ │ │ ├── html-ar.html.markdown
│ │ │ └── sql-ar.html.markdown
│ │ ├── bg-bg
│ │ │ ├── logtalk-bg.html.markdown
│ │ │ └── perl-bg.html.markdown
│ │ ├── c++.html.markdown
│ │ ├── c.html.markdown
│ │ ├── ca-es
│ │ │ ├── asciidoc-ca.html.markdown
│ │ │ └── kotlin-ca.html.markdown
│ │ ├── cairo.html.markdown
│ │ ├── chapel.html.markdown
│ │ ├── check.py
│ │ ├── check_filenames.py
│ │ ├── zh-tw
│ │ │ ├── bash-tw.html.markdown
│ │ │ └── pythonlegacy-tw.html.markdown
│ │ └── zig.html.markdown
│ ├── favicon.ico
│ ├── index.html.erb
│ ├── js
│ │ └── script.js
│ ├── layouts
│ │ ├── doc.erb
│ │ ├── home.erb
│ │ └── layout.erb
│ └── robots.txt
└── utils
└── frontmatter_checker.py
Building the docs/ folder means all my URL have “/docs/” in them. Is there way to build everything in the docs/ folder into the top level, i.e. directly into build/ instead of build/docs/ to make my URLs shorter?