An open API service indexing awesome lists of open source software.

https://github.com/mapnik/mapnik.github.com


https://github.com/mapnik/mapnik.github.com

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# mapnik.org

Home for the Mapnik project on the web.

Uses [jekyll](https://github.com/mojombo/jekyll).

[![Build Status](https://travis-ci.org/mapnik/mapnik.github.com.svg?branch=master)](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 %}
```