From 8a6007f95137d677914c19eb3fd37810a3cadd4f Mon Sep 17 00:00:00 2001 From: Alex Ellis Date: Mon, 18 Jan 2021 19:42:16 +0000 Subject: [PATCH] Fix missing instructions for images Fixes #7 and #28 by providing a clear example for adding images. --- readme.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index caa61dd..54f31a7 100644 --- a/readme.md +++ b/readme.md @@ -63,6 +63,14 @@ Inside the content directory, you can write multiple `.md` files. Ibis uses the

tags define different titles inside a chapter. ``` +### Using images + +Images can be stored in the content folder and then brought in like this: + +``` +![Screenshot 1](content/screenshot-1.png) +``` + ## Using Fonts Edit your `/ibis.php` configuration files to define the font files to be loaded from the `/assets/fonts` directory. After that you may use the defined fonts in your themes (`/assets/theme-light.html` & `/assets/theme-dark.html`). @@ -98,4 +106,4 @@ This command will use the generated files from the `ibis build` command to gener ## License -The MIT License (MIT). Please see [License File](LICENSE.md) for more information. \ No newline at end of file +The MIT License (MIT). Please see [License File](LICENSE.md) for more information.