summaryrefslogtreecommitdiff
path: root/internal/lightgallery/block.go
diff options
from:
to:
context:
space:
mode:
Diffstat (limited to 'internal/lightgallery/block.go')
-rw-r--r--internal/lightgallery/block.go9
1 files changed, 7 insertions, 2 deletions
diff --git a/internal/lightgallery/block.go b/internal/lightgallery/block.go
index dade2ea..072aa3c 100644
--- a/internal/lightgallery/block.go
+++ b/internal/lightgallery/block.go
@@ -1,11 +1,16 @@
package lightgallery
-import "github.com/yuin/goldmark/ast"
+import (
+ "time"
+
+ "github.com/yuin/goldmark/ast"
+)
// LightGalleryBlock represents a light gallery block in the AST
type LightGalleryBlock struct {
ast.BaseBlock
- Images []LightGalleryImage
+ Images []LightGalleryImage
+ Location *time.Location
}
type LightGalleryImage struct {