Skip to content

Commit 57a0297

Browse files
committed
HTML entities should not be escaped in Markdown
1 parent 67cdee6 commit 57a0297

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/topics/accessing-cells.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -426,9 +426,9 @@ for ($row = 1; $row <= $highestRow; ++$row) {
426426
echo '</table>' . PHP_EOL;
427427
```
428428

429-
Note that we can't use a &lt;= comparison here, because 'AA' would match
430-
as &lt;= 'B', so we increment the highest column letter and then loop
431-
while \$col != the incremented highest column.
429+
Note that we can't use a `<=` comparison here, because `'AA'` would match
430+
as `<= 'B'`, so we increment the highest column letter and then loop
431+
while `$col !=` the incremented highest column.
432432

433433
## Using value binders to facilitate data entry
434434

docs/topics/autofilters.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -285,8 +285,8 @@ $columnFilter->createRule()
285285

286286
We also set the rule type to CUSTOMFILTER.
287287

288-
This defined two rules, filtering numbers that are &gt;= -20 OR &lt;=
289-
20, so we also need to modify the join condition to reflect AND rather
288+
This defined two rules, filtering numbers that are `>= -20` OR `<=
289+
20`, so we also need to modify the join condition to reflect AND rather
290290
than OR.
291291

292292
``` php

docs/topics/recipes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ will take care of displaying the formula according the applications
132132
language. Translation is taken care of by the application!
133133

134134
The following line of code writes the formula
135-
`=IF(C4&gt;500,"profit","loss")` into the cell B8. Note that the
135+
`=IF(C4>500,"profit","loss")` into the cell B8. Note that the
136136
formula must start with `=` to make PhpSpreadsheet recognise this as a
137137
formula.
138138

docs/topics/worksheets.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ $spreadsheet->createSheet();
6969
```
7070

7171
A new worksheet created using this method will be called
72-
"Worksheet&lt;n&gt;" where "&lt;n&gt;" is the lowest number possible to
72+
`Worksheet<n>` where `<n>` is the lowest number possible to
7373
guarantee that the title is unique.
7474

7575
Alternatively, you can instantiate a new worksheet (setting the title to

0 commit comments

Comments
 (0)