Skip to content

How to Add Images to a Project

Curtis Gedak edited this page Jun 4, 2019 · 6 revisions

How to Add Images to Manuskript Project

To reference images with current versions of Manuskript be sure to store the images outside of the project file(s) and directories.

One option is to store the images in a directory at the same level as the project.msk file. For example:

  • Create an images folder at the same directory level as the project.msk file
  • To reference an image use: ![My Image One Title](images/myimage1.jpg)

With setting "Save to one single file" enabled this looks like:

.
|
+-- images --+-- myimage1.jpg
|            |
|            +-- ...
|
+-- myproject.msk

With setting "Save to one single file" disabled this looks like:

.
|
+-- images --+-- myimage1.jpg
|            |
|            +-- ...
|
+-- myproject --+-- infos.txt
|               |
|               +-- labels.txt
|               |
|               +-- ...
|               |
|               +-- outline --+-- ...
|               |             |
|               |             +-- ...
|               |
|               +-- ...
|               |
|               +-- world.opml
|
+-- myproject.msk

If the project was intended to be published on the web then you might compile/export the project as HTML and then place the project.html and images folder at the same location on the web server.

On a web server this might look like:

.
|
+-- images --+-- myimage1.jpg
|            |
|            +-- ...
|
+-- myproject.html
Clone this wiki locally