cake-build / website

:earth_americas: The Cake website: https://cakebuild.net
https://cakebuild.net
MIT License
43 stars 228 forks source link

API - Missing ability to download reference guide for offline. #505

Open devlead opened 6 years ago

devlead commented 6 years ago

@Eldadc commented on Tue Apr 10 2018

API - Missing ability to download reference guide for offline. Thanks

devlead commented 6 years ago

There's no offline API reference available currently, the website is a static web site so you could download the html files from the publish git branch https://github.com/cake-build/website/archive/publish/master.zip

devlead commented 6 years ago

If you're on a Windows machine you could actually generate and host the site locally using WYAM, first clone repo get all addin and sources from GitrHub and NuGet

https://github.com/cake-build/website.git
.\build.ps1 -Target GetArtifacts

Then you can render the docs locally

.\build.ps1 -Target Preview

And preview using local url http://localhost:5080

Eldadc commented 6 years ago

Thanks for the detailed answer !