Skip to content

Commit 370310c

Browse files
authored
Update formatting-syntax-reference.md
Fixed incorrect escaping preventing links from working and making operators look incorrect
1 parent 8b2fb1c commit 370310c

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

docs/declarative-customization/formatting-syntax-reference.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ Specifies the type of element to create. Valid elements include:
1414
- `div`
1515
- `span`
1616
- `a`
17-
- `[img](#img-src-security)`
17+
- [`img`](#img-src-security)
1818
- `svg`
1919
- `path`
2020
- `button`
2121
- `p`
22-
- `[filepreview](#filepreview)`
22+
- [`filepreview`](#filepreview)
2323

2424
Any other value will result in an error.
2525

@@ -546,17 +546,17 @@ The following example contains an Expression object that performs the expression
546546

547547
Operators specify the type of operation to perform. Valid operator values include:
548548

549-
- `\+`
550-
- `\-`
549+
- `+`
550+
- `-`
551551
- `/`
552-
- `\*`
552+
- `*`
553553
- `<`
554-
- `\>`
555-
- `\%`
554+
- `>`
555+
- `%`
556556
- `==`
557557
- `!=`
558558
- `<=`
559-
- `\>=`
559+
- `>=`
560560
- `||`
561561
- `&&`
562562
- `toString()`
@@ -599,17 +599,17 @@ Operators specify the type of operation to perform. Valid operator values includ
599599

600600
**Binary arithmetic operators** - The standard arithmetic binary operators that expect two operands include are:
601601

602-
- `\+`
603-
- `\-`
602+
- `+`
603+
- `-`
604604
- `/`
605-
- `\*`
605+
- `*`
606606
- `<`
607-
- `\>`
608-
- `\%`
607+
- `>`
608+
- `%`
609609
- `==`
610610
- `!=`
611611
- `<=`
612-
- `\>=`
612+
- `>=`
613613

614614
**Unary operators** - The standard unary operators that expect only one operand are:
615615

0 commit comments

Comments
 (0)