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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to