Ken Sturgeon
Active Member
- Messages
- 183
I have a commentary that I converted from epub to HTML that I've turned into a user book module. There are several images in an image folder; the associated links in the html source manifest as follows:
I created a folder called BBC-Assets that corresponds to the module name BBC.ss5book and copied all of the images to the assets folder. I then changed the links as follows:
Unfortunately I still didn't see the images after recreating the module with Forge.
I then think that perhaps I don't need to include the assets folder so I change the links to point directly to the links:
...no dice.
Next I tried
...no dice. Then
...
Can anyone tell me how to successfully link to the images in the assets folder from a user book?
Thank you very much.
Ken
HTML:
<img src="images/00004.jpeg" alt="" class="calibre2" />
I created a folder called BBC-Assets that corresponds to the module name BBC.ss5book and copied all of the images to the assets folder. I then changed the links as follows:
HTML:
<img src="BBC-Assets/00004.jpeg" alt="" class="calibre2" />
I then think that perhaps I don't need to include the assets folder so I change the links to point directly to the links:
HTML:
<img src="00004.jpeg" alt="" class="calibre2" />
Next I tried
HTML:
<img src="ssimage|:00004.jpeg" alt="" class="calibre2" />
HTML:
<img src="ssimageBBC|:00004.jpeg" alt="" class="calibre2" />
Can anyone tell me how to successfully link to the images in the assets folder from a user book?
Thank you very much.
Ken