diff --git a/README.md b/README.md
index 83dc7b2..7fd7728 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,25 @@
Clipping and geometric operations for spherical polygons.
+
+
+```html run=false
+const projection = geoDodecahedral();
+```
+
+This module introduces a dozen projections that need polygon clipping. It can also be used to clip a projection with an arbitrary polygon:
+
+```html run=false
+const projection = geoEquirectangular()
+ .preclip(geoClipPolygon({
+ type: "Polygon",
+ coordinates: [[[-10, -10], [-10, 10], [10, 10], [10, -10], [-10, -10]]]
+ }));
+```
+
## Installing
If you use npm, `npm install d3-geo-polygon`. You can also download the [latest release on GitHub](https://github.com/d3/d3-geo-polygon/releases/latest). For vanilla HTML in modern browsers, import d3-geo-polygon from Skypack:
@@ -26,15 +45,12 @@ const projection = d3.geoCubic();
```
-This module introduces a handful of additional projections. It can also be used to clip a projection with an arbitrary polygon:
+
-```html run=false
-const projection = d3.geoEquirectangular()
- .preclip(d3.geoClipPolygon({
- type: "Polygon",
- coordinates: [[[-10, -10], [-10, 10], [10, 10], [10, -10], [-10, -10]]]
- }));
-```
+Daily downloads of d3-geo-polygon ยท [oss-analytics](https://observablehq.observablehq.cloud/oss-analytics/)
## API Reference