Here is the complete workflow:
Initialize repository and workspace
$ fossil new repo.fossil
$ mkdir workspace
$ cd workspace
$ fossil open ../repo.fossil
Add image file to repository
$ fossil add image.jpg
$ fossil commit -m "added image.jpg"
Start Fossil Server:
$ fossil server
Open the web interface in a browser:
BROWSERNAME 127.0.0.1:8080
Now I want to get the .jpg image displayed on the wiki page.
Things I tried:
[image.jpg]
<img src="image.jpg">
I also tried switching "Use HTML as a wiki markup language" in Admin-> Configuration
source
share