[Documentation] Markdown improvements n to s (#13948)

Signed-off-by: Jerome Luckenbach <github@luckenba.ch>
This commit is contained in:
Jerome Luckenbach
2022-12-14 16:52:43 +01:00
committed by GitHub
parent d73218d882
commit 1ca9baf157
106 changed files with 4506 additions and 4729 deletions

View File

@@ -84,9 +84,9 @@ things from them.
## Full Example
things/pilight.things
### pilight.things
```
```java
Bridge pilight:bridge:raspi "Pilight Daemon raspi" [ ipAddress="192.168.1.1", port=5000 ] {
Thing switch office "Office" [ name="office" ]
Thing dimmer piano "Piano" [ name="piano" ]
@@ -98,9 +98,9 @@ Bridge pilight:bridge:raspi "Pilight Daemon raspi" [ ipAddress="192.168.1.1", po
}
```
items/pilight.items
### pilight.items
```
```java
Switch office_switch "Büro" { channel="pilight:switch:raspi:office:state" }
Dimmer piano_light "Klavier [%.0f %%]" { channel="pilight:dimmer:raspi:piano:dimlevel" }
Number weather_temperature "Aussentemperatur [%.1f °C]" <temperature> { channel="pilight:generic:raspi:weather:temperature" }
@@ -108,12 +108,11 @@ Number weather_humidity "Feuchtigkeit [%.0f %%]" <humidity> { channel="pilight:g
```
sitemaps/fragment.sitemap
### fragment.sitemap
```
```perl
Switch item=office_switch
Slider item=piano_light
Text item=weather_temperature
Text item=weather_humidity
```