diff --git a/build-site.sh b/build-site.sh index eb1906b6..22e98dbe 100755 --- a/build-site.sh +++ b/build-site.sh @@ -17,6 +17,9 @@ mkdir -p docs # Install requirements pip install -r requirements.txt +# Download Edge page +curl https://raw.githubusercontent.com/hassio-addons/repository-edge/master/README.md --output docs/edge.md + # Get the pages into the docs folder ln -sf ../README.md docs/index.md ln -sf ../LICENSE.md docs/license.md diff --git a/mkdocs.yml b/mkdocs.yml index 826a11f3..2d12f7ac 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -64,6 +64,7 @@ markdown_extensions: # The pages to serve pages: - "Our Add-ons": "index.md" + - "Edge Add-ons": "edge.md" - "Contributing": "contributing.md" - "Code of Conduct": "code-of-conduct.md" - "License": "license.md"