Github user HyukjinKwon commented on the issue:
https://github.com/apache/spark/pull/18702
@srowen, so, the current structure is like ...
```
.
âââ docs
âââ sql
âââ create-docs.sh # Genenerates HTMLs.
âââ gen-sql-markdown.py # Generaates markdown files.
âââ mkdocs.yml # MkDocs configuration file.
```
After `cd sql && create-docs.sh` under `sql`:
```
.
âââ docs
âââ sql
âââ create-docs.sh
âââ gen-sql-markdown.py
âââ mkdocs.yml
âââ site # Generated HTML files.
```
After `cd docs && SKIP_SCALADOC=1 SKIP_PYTHONDOC=1 SKIP_RDOC=1 jekyll build`
```
.
âââ docs
â  âââ api
â  âââ sql
â  âââ site # Copied from ./sql/site
âââ sql
âââ create-docs.sh
âââ gen-sql-markdown.py
âââ mkdocs.yml
âââ site
```
It is pretty easy to move files around in any case and I am fine with
trying out to move multiple times to show how it looks like.
So ... do you mean something like the one as below?
```
.
âââ docs
âââ sql
  âââ bin
â âââ create-docs.sh # Genenerates HTMLs.
â âââ gen-sql-markdown.py # Generaates markdown files.
âââ mkdocs.yml # MkDocs configuration file.
```
After `create-docs.sh` under `sql`:
```
.
âââ docs
â  âââ api
â  âââ sql
â  âââ site # Generated HTML files.
âââ sql
  âââ bin
â âââ create-docs.sh
â âââ gen-sql-markdown.py
âââ mkdocs.yml
```
After `SKIP_SCALADOC=1 SKIP_PYTHONDOC=1 SKIP_RDOC=1 jekyll build`
```
.
âââ docs
â  âââ api
â  âââ sql
â  âââ site # Generated HTML files.
âââ sql
  âââ bin
â âââ create-docs.sh
â âââ gen-sql-markdown.py
âââ mkdocs.yml
```
Or, would this maybe give you another idea?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]