-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Syntax highlighting for geojson #3083
Copy link
Copy link
Closed
Labels
Description
Syntax:
I would like bat to support syntax highlighting for GeoJSON files out of the box.
GeoJSON is a format for encoding a variety of geographic data structures. See geojson.org. Example:
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [125.6, 10.1]
},
"properties": {
"name": "Dinagat Islands"
}
}As GeoJSON is JSON, running bat file.geojson -l json works well.
Reactions are currently unavailable