소스 검색

cookbooks/devel/core: removed empty html comments

Daniel-Constantin Mierla 2 년 전
부모
커밋
bf56d9ffc6
1개의 변경된 파일1개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 6
      docs/cookbooks/devel/core.md

+ 1 - 6
docs/cookbooks/devel/core.md

@@ -5278,8 +5278,6 @@ pseudo-variables can be used in left side of an assignment:
 -   `$sf` - to set script flags value
 -   `$bf` - to set branch flags value
 
-<!-- -->
-
     $var(a) = 123;
 
 For avp's there a way to remove all values and assign a single value in
@@ -5318,7 +5316,7 @@ Example:
     $var(a) = 4 + ( 7 & ( ~2 ) );
 
 NOTE: to ensure the priority of operands in expression evaluations do
-use <u>parenthesis</u>.
+use **parenthesis**.
 
 Arithmetic expressions can be used in condition expressions.
 
@@ -5354,7 +5352,6 @@ time and they are the same).
     and then perform the operation. Exception: the left operand is
     undef. This applies to the following operators: `+`, `==` and `!=`.
 
-<!-- -->
 
        Special case: undef as left operand:
        For +: undef + expr -> undef is converted to string => "" + expr.
@@ -5365,14 +5362,12 @@ time and they are the same).
 1.  expression evaluation changes: Kamailio will auto-convert to integer
     or string in function of the operators:
 
-<!-- -->
 
          int(undef)==0,  int("")==0, int("123")==123, int("abc")==0
          str(undef)=="", str(123)=="123".
 
 1.  script operators for dealing with empty/undefined variables
 
-<!-- -->
 
         defined expr - returns true if expr is defined, and false if not.
                        Note: only a standalone avp or pvar can be