Emphasis the point being discussed

This commit is contained in:
Adrien Crivelli 2018-06-04 14:09:21 +09:00
parent c897bdfadf
commit ab541b9b5f
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
1 changed files with 8 additions and 8 deletions

View File

@ -634,16 +634,16 @@ $writer->setSheetIndex(0);
#### Setting the images root of the HTML file
There might be situations where you want to explicitly set the included
images root. For example, one might want to see
images root. For example, instead of:
``` html
<img src="./images/logo.jpg">
```
You might want to see:
``` html
<img style="position: relative; left: 0px; top: 0px; width: 140px; height: 78px;" src="http://www.domain.com/*images/logo.jpg" border="0">
```
instead of
``` html
<img style="position: relative; left: 0px; top: 0px; width: 140px; height: 78px;" src="./images/logo.jpg" border="0">.
<img src="http://www.domain.com/images/logo.jpg">
```
You can use the following code to achieve this result: