HTML entities should not be escaped in Markdown

This commit is contained in:
Adrien Crivelli 2018-07-24 10:06:10 +09:00
parent 67cdee6033
commit 57a0297011
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
4 changed files with 7 additions and 7 deletions

View File

@ -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 &lt;= comparison here, because 'AA' would match Note that we can't use a `<=` comparison here, because `'AA'` would match
as &lt;= '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

View File

@ -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 &gt;= -20 OR &lt;= 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

View File

@ -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&gt;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.

View File

@ -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&lt;n&gt;" where "&lt;n&gt;" 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