HTML entities should not be escaped in Markdown
This commit is contained in:
parent
67cdee6033
commit
57a0297011
|
@ -426,9 +426,9 @@ for ($row = 1; $row <= $highestRow; ++$row) {
|
||||||
echo '</table>' . PHP_EOL;
|
echo '</table>' . PHP_EOL;
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that we can't use a <= comparison here, because 'AA' would match
|
Note that we can't use a `<=` comparison here, because `'AA'` would match
|
||||||
as <= 'B', so we increment the highest column letter and then loop
|
as `<= 'B'`, so we increment the highest column letter and then loop
|
||||||
while \$col != the incremented highest column.
|
while `$col !=` the incremented highest column.
|
||||||
|
|
||||||
## Using value binders to facilitate data entry
|
## Using value binders to facilitate data entry
|
||||||
|
|
||||||
|
|
|
@ -285,8 +285,8 @@ $columnFilter->createRule()
|
||||||
|
|
||||||
We also set the rule type to CUSTOMFILTER.
|
We also set the rule type to CUSTOMFILTER.
|
||||||
|
|
||||||
This defined two rules, filtering numbers that are >= -20 OR <=
|
This defined two rules, filtering numbers that are `>= -20` OR `<=
|
||||||
20, so we also need to modify the join condition to reflect AND rather
|
20`, so we also need to modify the join condition to reflect AND rather
|
||||||
than OR.
|
than OR.
|
||||||
|
|
||||||
``` php
|
``` php
|
||||||
|
|
|
@ -132,7 +132,7 @@ will take care of displaying the formula according the applications
|
||||||
language. Translation is taken care of by the application!
|
language. Translation is taken care of by the application!
|
||||||
|
|
||||||
The following line of code writes the formula
|
The following line of code writes the formula
|
||||||
`=IF(C4>500,"profit","loss")` into the cell B8. Note that the
|
`=IF(C4>500,"profit","loss")` into the cell B8. Note that the
|
||||||
formula must start with `=` to make PhpSpreadsheet recognise this as a
|
formula must start with `=` to make PhpSpreadsheet recognise this as a
|
||||||
formula.
|
formula.
|
||||||
|
|
||||||
|
|
|
@ -69,7 +69,7 @@ $spreadsheet->createSheet();
|
||||||
```
|
```
|
||||||
|
|
||||||
A new worksheet created using this method will be called
|
A new worksheet created using this method will be called
|
||||||
"Worksheet<n>" where "<n>" is the lowest number possible to
|
`Worksheet<n>` where `<n>` is the lowest number possible to
|
||||||
guarantee that the title is unique.
|
guarantee that the title is unique.
|
||||||
|
|
||||||
Alternatively, you can instantiate a new worksheet (setting the title to
|
Alternatively, you can instantiate a new worksheet (setting the title to
|
||||||
|
|
Loading…
Reference in New Issue