-13
.changeset/plain-beans-taste.md
-13
.changeset/plain-beans-taste.md
···
1
-
---
2
-
"@nulfrost/leaflet-loader-astro": minor
3
-
---
4
-
5
-
Added support for these leaflet blocks:
6
-
7
-
- ul/li
8
-
- math
9
-
- code
10
-
- img
11
-
- hr
12
-
13
-
the only remaining block to implement is "website", though I haven't thought of a good way to output that yet. stay tuned for a further release
-17
.changeset/true-terms-start.md
-17
.changeset/true-terms-start.md
···
1
-
---
2
-
"@nulfrost/leaflet-loader-astro": minor
3
-
---
4
-
5
-
Added the ability to use a handle or did when specifying a repo for leafletStaticLoader and leafletLiveLoader
6
-
7
-
8
-
```ts
9
-
import { defineLiveCollection} from "astro:content";
10
-
import { leafletLiveLoader } from "leaflet-loader-astro";
11
-
12
-
const documents = defineLiveCollection({
13
-
loader: leafletLiveLoader({ repo: "dane.computer" }), // or repo: did:plc:qttsv4e7pu2jl3ilanfgc3zn, both work!
14
-
});
15
-
16
-
export const collections = { documents };
17
-
```
+27
CHANGELOG.md
+27
CHANGELOG.md
···
1
1
# leaflet-loader-astro
2
2
3
+
## 1.1.0
4
+
5
+
### Minor Changes
6
+
7
+
- 6d70cc6: Added support for these leaflet blocks:
8
+
9
+
- ul/li
10
+
- math
11
+
- code
12
+
- img
13
+
- hr
14
+
15
+
the only remaining block to implement is "website", though I haven't thought of a good way to output that yet. stay tuned for a further release
16
+
17
+
- 5524ce5: Added the ability to use a handle or did when specifying a repo for leafletStaticLoader and leafletLiveLoader
18
+
19
+
```ts
20
+
import { defineLiveCollection } from "astro:content";
21
+
import { leafletLiveLoader } from "leaflet-loader-astro";
22
+
23
+
const documents = defineLiveCollection({
24
+
loader: leafletLiveLoader({ repo: "dane.computer" }), // or repo: did:plc:qttsv4e7pu2jl3ilanfgc3zn, both work!
25
+
});
26
+
27
+
export const collections = { documents };
28
+
```
29
+
3
30
## 1.0.0
4
31
5
32
### Major Changes