### Access Navisworks 2018 API Documentation Source: https://context7.com/context7/apidocs_co-apps-navisworks-2018/llms.txt This snippet shows how to access the main entry point for the Navisworks 2018 API reference documentation. It lists the content structure including the Reference Guide and interactive features. ```markdown # Access the main documentation URL: N_Home.md # Content Structure - Reference Guide section - JavaScript-dependent interactive features - Favorite/bookmark functionality (_favorite_border_) ``` -------------------------------- ### Clone and Access Navisworks 2018 API Docs Repository Source: https://context7.com/context7/apidocs_co-apps-navisworks-2018/llms.txt These bash commands demonstrate how to clone the Navisworks 2018 API documentation repository, navigate into the directory, and view the README and main documentation files. ```bash # Clone the repository git clone apidocs_co-apps-navisworks-2018 # Navigate to documentation cd apidocs_co-apps-navisworks-2018 # View README cat README.md # Output: Documentation repository created by Site2MD # Access main documentation cat N_Home.md ``` -------------------------------- ### View Git History for Navisworks 2018 API Docs Source: https://context7.com/context7/apidocs_co-apps-navisworks-2018/llms.txt This snippet shows Git commands to view the latest commit, check the repository status, and display detailed information about a specific commit, useful for tracking changes in the documentation. ```bash # View latest commit git log --oneline -1 # Output: cdf8bb4 docs: upload 1 documentation files # Check repository status git status # Output: On branch main, nothing to commit, working tree clean # View commit details git show cdf8bb4 # Shows documentation files added in initial commit ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.