diff --git a/fhem/docs/commandref_frame.html b/fhem/docs/commandref_frame.html
index 421a6ccbf..7cca4bac3 100644
--- a/fhem/docs/commandref_frame.html
+++ b/fhem/docs/commandref_frame.html
@@ -1336,9 +1336,9 @@ The following local attributes are used by a wider range of devices:
backupsymlink
- If this attribute is set to everything else as "no", the archive command tar
- will support symlinks in your backup. Otherwise, if this attribute is set to
- "no" symlinks are ignored by tar.
+ If this attribute is set to everything else as "no", the archive
+ command tar will support symlinks in your backup. Otherwise, if this
+ attribute is set to "no" symlinks are ignored by tar.
This Attribute is used by the backup command.
Example:
@@ -1506,15 +1506,15 @@ The following local attributes are used by a wider range of devices:
Perl specials
- If you want to automate some tasks via fhem, then you'll probably use at or notify. For more complex tasks
you'll use either a shell-script or a perl "oneliner" as the at/notify
argument. This chapter gives some tips in using the perl oneliners.
- - To test perl oneliners, type them on the telnet prompt (or FHEMWEB text
- input) by enclosing it in {}, one line at once. The last line will only
- write something in the logfile, the output of the other lines is directly
- visible.
+
- To test the following perl oneliners, type them on the telnet prompt (or
+ FHEMWEB text input) by enclosing it in {}, one line at once. The last line
+ will only write something in the logfile, the output of the other lines is
+ directly visible.
{ "Hello" }
{ 1+3*4 }
@@ -1524,23 +1524,23 @@ The following local attributes are used by a wider range of devices:
-
- Perl expressions are separated by ;, in fhem oneliners they have to
+ Perl expressions are separated by ;, in FHEM oneliners they have to
escaped with ;;
{ my $a = 1+1;; Log 1, "Hello $a" }
- - To use fhem commands from the perl expression, use the function fhem(),
- which takes a string argument, this string will be evaluated as a fhem
+
- To use FHEM commands from the perl expression, use the function fhem(),
+ which takes a string argument, this string will be evaluated as a FHEM
command:
{ fhem "set light on" }
define n1 notify piri:on { fhem "set light on" }
Note: if this function returns a value, it will also be logged into the
- global fhem log. Use 1 as a second argument to disable this logging, this
- makes sense when obtainig some values via fhem "get...".
+ global FHEM log. Use 1 as a second argument to disable this logging, this
+ makes sense when obtainig some values via FHEM "get...".