diff --git a/content/get-started/writing-on-github/working-with-advanced-formatting/creating-diagrams.md b/content/get-started/writing-on-github/working-with-advanced-formatting/creating-diagrams.md index c91e57029b..f347d12fe0 100644 --- a/content/get-started/writing-on-github/working-with-advanced-formatting/creating-diagrams.md +++ b/content/get-started/writing-on-github/working-with-advanced-formatting/creating-diagrams.md @@ -49,15 +49,27 @@ For example, you can create a simple map:
```geojson
{
- "type": "Polygon",
- "coordinates": [
- [
- [-90,30],
- [-90,35],
- [-90,35],
- [-85,35],
- [-85,30]
- ]
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "id": 1,
+ "properties": {
+ "ID": 0
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [-90,35],
+ [-90,30],
+ [-85,30],
+ [-85,35],
+ [-90,35]
+ ]
+ ]
+ }
+ }
]
}
```