Contents for Elixir website hosted at elixir-lang.org

It is automatically transformed by Jekyll into a static site.

Development

Development is done in the next branch, while master contains the docs and guides for the latest stable release.

Contributing with the blog

Create a new file inside _posts/YYYY-MM-DD-post-title.markdown following the template:

---
layout: post
title:
author:
category:
excerpt:
---

Body text goes here...

Or use _bin/newpost to bootstrap a new post file:

export EDITOR=vim; _bin/newpost 'Post title'

Contributing improvements or bug fixes

  1. Fork elixir-lang.github.com

  2. Make your changes

  3. Test it locally

    You need to install jekyll and redcarpet

    $ gem install jekyll redcarpet
    $ jekyll serve # check localhost:4000
  4. Send a pull-request for your changes.

License