Wiki

Clone wiki

OpenSIMPPLLE / Home

Welcome


This wiki is the living documentation for developers on this ongoing project. All developers are encouraged to add and edit existing content, as well as create new pages. You can edit the wiki through your browser or clone it as described in the Wiki Features section below. If you want to contribute to the development of OpenSIMPPLLE and have not worked on a collaborative software project before, it will be worth your time to read chapters 2 & 3 of Pro Git. If you are not a developer and want to get started using the application, please refer to the OpenSIMPPLLE User Guide.

Getting Started


Diving in to the Code


  • Basic Concepts
  • Code Organization
  • Future Directions

Wiki Features


This wiki uses the Markdown syntax.

Here is a simple guide on markdown syntax.

The wiki itself is actually a git repository, which means you can clone it, edit it locally/offline, add images or any other file type, and push it back to us. It will be live immediately.

Go ahead and try:

$ git clone https://bitbucket.org/opensimpplleteam/opensimpplle.git/wiki

Wiki pages are normal files, with the .md extension. You can edit them locally, as well as create new ones.

You can also highlight snippets of text (we use the excellent Pygments library).

Here's an example of some Python code:

#!python

def wiki_rocks(text):
    formatter = lambda t: "funky " + t
    return formatter(text)

Updated