Github user HyukjinKwon commented on the issue:

    https://github.com/apache/spark/pull/18702
  
    @srowen, I tried to resemble, in particular, R:
    
    ```
    .
    ├── docs
    └── sql
        ├── create-docs.sh      # Generates HTMLs.
        ├── gen-sql-markdown.py # Generates markdown files.
        └── mkdocs.yml          # MkDocs configuration file.
    ```
    
    After `cd sql && create-docs.sh`:
    
    ```
    .
    ├── 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             # Copied from ./sql/site
    └── sql
        ├── create-docs.sh
        ├── gen-sql-markdown.py
        ├── mkdocs.yml
        └── site
    ```
    
    and I cleaned up few nits in the last commit. I believe it is ready for 
another look.


---
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