diff --git a/CHANGELOG b/CHANGELOG
index 6c8db2b..377c91e 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,10 @@
+mkdocs-glightbox-0.3.1 (2022-11-22)
+
+ * Supported lightbox slide effect customization (#8)
+ * Supported synchronized lightbox caption dark mode with Material for MkDocs (#7)
+ * Supported glightbox built-in gallery feature (#11)
+ * Supported skip image in the anchor tag
+
mkdocs-glightbox-0.3.0 (2022-09-29)
* Fixed width and height setting in config not working bug
diff --git a/README.md b/README.md
index 6e48c18..66fb0c9 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,9 @@ GLightbox is a pure javascript lightbox library with mobile support.
- glightbox
```
-3. You may customize the plugin by passing options in mkdocs.yml:
+3. All images will be added to the lightbox effect automatically, except images in an anchor tag and emoji images from [pymdown-extensions](https://facelessuser.github.io/pymdown-extensions/extensions/emoji/).
+
+4. You may customize the plugin by passing options in mkdocs.yml:
```yaml
plugins:
@@ -69,8 +71,15 @@ GLightbox is a pure javascript lightbox library with mobile support.
Check more options information on [GLightbox Docs](https://github.com/biati-digital/glightbox#lightbox-options).
-4. For more flexibility, you can disable the lightbox with a [specific image](https://blueswen.github.io/mkdocs-glightbox/disable/image/) or a [specific page](https://blueswen.github.io/mkdocs-glightbox/disable/page/).
-5. Support lightbox image caption, check more details on [Caption](https://blueswen.github.io/mkdocs-glightbox/caption/caption/).
+5. For more flexibility, you can disable the lightbox with a [specific image](https://blueswen.github.io/mkdocs-glightbox/disable/image/) or a [specific page](https://blueswen.github.io/mkdocs-glightbox/disable/page/).
+6. Support lightbox image caption, check more details on [Caption](https://blueswen.github.io/mkdocs-glightbox/caption/caption/).
+7. Support grouping images as galleries, check more details on [Gallery](https://blueswen.github.io/mkdocs-glightbox/gallery/gallery/).
+
+## How it works
+
+1. Copy GLightbox script file into `site/assets/javascripts/` directory and CSS file into `site/assets/stylesheets/` directory
+2. Import GLightbox script and CSS file and add javascript code on each page excluded disabled pages
+3. Search all image tags and warp with an anchor tag for GLightbox excluded images with skip class or already warped with an anchor tag
## License
diff --git a/demo-mkdocs/docs/caption/caption.md b/demo-mkdocs/docs/caption/caption.md
index 056b1d9..9f86c77 100644
--- a/demo-mkdocs/docs/caption/caption.md
+++ b/demo-mkdocs/docs/caption/caption.md
@@ -11,7 +11,7 @@ markdown_extensions:
- attr_list
```
-Check more detail about ```attr_list``` on the [official document](https://python-markdown.github.io/extensions/attr_list/).
+Check more details about ```attr_list``` on the [official document](https://python-markdown.github.io/extensions/attr_list/).
!!! warning "Warning"
@@ -87,7 +87,7 @@ Since adding a title attribute to each image may be frustrating, we provide an `
- meta
```
- Check more detail about ```meta``` on the [official document](https://python-markdown.github.io/extensions/meta_data/).
+ Check more details about ```meta``` on the [official document](https://python-markdown.github.io/extensions/meta_data/).
```markdown title="Using image alt as caption title with page meta"
---
@@ -112,7 +112,6 @@ The built-in GLightbox caption feature only works in the **light box**. If you w
glightbox.auto_caption: true
---
-