Github user HyukjinKwon commented on the issue:
https://github.com/apache/spark/pull/18702
In any case, it is easy. I was just thinking of matching it up with, like,
R and Python which are, up to my knowledge, something like the below:
**R**:
```
.
âââ docs
âââ R
âââ create-docs.sh # Genenerates HTMLs.
```
After `cd R && create-docs.sh`:
```
.
âââ docs
âââ R
  âââ create-docs.sh
âââ pkg
  âââ html # Generated HTML files.
```
After `cd docs && jekyll build`
```
.
âââ docs
â  âââ api
â  âââ R # Copied from ./R/pkg/html
âââ R
  âââ create-docs.sh
âââ pkg
  âââ html
```
**Python**:
```
.
âââ docs
âââ python
âââ docs
âââ Makefile # Genenerates HTMLs.
```
After `cd python && make html`:
```
.
âââ docs
âââ R
âââ docs
  âââ create-docs.sh
âââ _build
  âââ html # Generated HTML files.
```
After `cd docs && jekyll build`
```
.
âââ docs
â  âââ api
â  âââ python # Copied from ./python/docs/_build/html
âââ R
  âââ create-docs.sh
âââ pkg
  âââ html
```
---
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]