https://github.com/mapnik/mapnik.github.com
https://github.com/mapnik/mapnik.github.com
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/mapnik/mapnik.github.com
- Owner: mapnik
- Created: 2011-10-12T11:01:23.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2025-03-02T10:15:28.000Z (about 1 year ago)
- Last Synced: 2025-03-02T11:23:54.316Z (about 1 year ago)
- Language: HTML
- Homepage: mapnik.org
- Size: 44.5 MB
- Stars: 8
- Watchers: 10
- Forks: 13
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: news/archive.html
Awesome Lists containing this project
README
# mapnik.org
Home for the Mapnik project on the web.
Uses [jekyll](https://github.com/mojombo/jekyll).
[](https://travis-ci.org/mapnik/mapnik.github.com)
## Setup
### Install jekyll (depends on Ruby, rubygems and Ruby development packages)
bundle install
### Run jekyll
bundle exec jekyll serve
### View the site at:
http://127.0.0.1:4000/
### Update news posts:
Format `/news` posts as either `.html` or `.md` files. Code snippets should be wrapped in `highlight` liquid tags either with or without line numbers, outlined below. Replace `xml` with the code snippet type.
```
{% highlight xml %}
code here
{% endhighlight %}
```
or
```
{% highlight xml linenos %}
code here
{% endhighlight %}
```