1# leaflet-loader-astro 2 3## 1.3.0 4 5### Minor Changes 6 7- eb3bc4b: Add iframe block 8 9## 1.2.0 10 11### Minor Changes 12 13- f920153: Add support for blockquotes 14 15### Patch Changes 16 17- 8922bb1: Add JSDoc comments for available loader options for leafletStaticLoader and leafletLiveLoader 18 19## 1.1.0 20 21### Minor Changes 22 23- 6d70cc6: Added support for these leaflet blocks: 24 25 - ul/li 26 - math 27 - code 28 - img 29 - hr 30 31 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 32 33- 5524ce5: Added the ability to use a handle or did when specifying a repo for leafletStaticLoader and leafletLiveLoader 34 35 ```ts 36 import { defineLiveCollection } from "astro:content"; 37 import { leafletLiveLoader } from "leaflet-loader-astro"; 38 39 const documents = defineLiveCollection({ 40 loader: leafletLiveLoader({ repo: "dane.computer" }), // or repo: did:plc:qttsv4e7pu2jl3ilanfgc3zn, both work! 41 }); 42 43 export const collections = { documents }; 44 ``` 45 46## 1.0.0 47 48### Major Changes 49 50- b4309c0: This is the initial release for `leaflet-loader-astro`