Wiki

Clone wiki

pleabargains / Wiki Formatting Guide

Blank lines:

For each blank line, inserting a non-breaking space character (using Option + Space on Mac) followed by two trailing regular space characters. Example right here:  


Nested lists:

  • First item
  • Second item
  • Third item
    • Indented item
    • Indented item
  • Fourth item

Wiki features

This wiki uses the Markdown syntax. The MarkDownDemo tutorial shows how various elements are rendered. The Bitbucket documentation has more information about using a wiki.

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/teamtojo/pleabargains.git/wiki

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

Syntax highlighting

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)

You can check out the source of this page to see how that's done, and make sure to bookmark the vast library of Pygment lexers, we accept the 'short name' or the 'mimetype' of anything in there.

Updated