Remove url prefix pt 2 (#5014)

* Migrate the non blog posts to use no domain

* Update demo links

* Remove Zanzito references from owntracks docs
This commit is contained in:
Paulus Schoutsen 2018-03-24 22:14:34 -07:00 committed by GitHub
parent d3fc349b50
commit 41955dc31a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
102 changed files with 243 additions and 257 deletions

View file

@ -22,7 +22,7 @@ To enable this sensor, add the following lines to your `configuration.yaml` file
# Example configuration.yaml entry
sensor:
- platform: scrape
resource: https://home-assistant.io
resource: https://www.home-assistant.io
select: ".current-version h1"
```
@ -43,14 +43,14 @@ In this section you find some real life examples of how to use this sensor. Ther
### {% linkable_title Home Assistant %}
The current release Home Assistant is published on [https://home-assistant.io/](https://home-assistant.io/)
The current release Home Assistant is published on [https://www.home-assistant.io/](/)
{% raw %}
```yaml
sensor:
# Example configuration.yaml entry
- platform: scrape
resource: https://home-assistant.io
resource: https://www.home-assistant.io
name: Release
select: ".current-version h1"
value_template: '{{ value.split(":")[1] }}'
@ -66,7 +66,7 @@ Get the counter for all our implementations from the [Component overview](/compo
# Example configuration.yaml entry
sensor:
- platform: scrape
resource: https://home-assistant.io/components/
resource: https://www.home-assistant.io/components/
name: Home Assistant impl.
select: 'a[href="#all"]'
value_template: '{{ value.split("(")[1].split(")")[0] }}'