- Download Waylan Limberg's Python Markdown implementation from https://pypi.python.org/pypi/Markdown
- Put the “
markdown
” folder from the .zip or .tar.gz in star-site/app
- Download https://gist.github.com/smutch/1454175
- Put the “
gfm.py
” file in star-site/app.
- Follow standard Git commit guidelines.
- Commits should fit in the sentence, “If applied, this commit will ___.”
- Indent with tabs, NOT spaces.
- Variable names should have words sparated_by_underscores.
- Constant names should be ALL_CAPS_SEPARATED_BY_UNDERSCORES.
- Strings should use single quotes.
- Surround operators with spaces.
- Indent with tabs, NOT spaces.
- Use valid XML (all tags should be closed, all attributes should have values, all values should have quotes).
- Attribute values should use double quotes.
- Indent with tabs, NOT spaces.
- Variable and function names should be in camelCase.
- Constant names should be ALL_CAPS_SEPARATED_BY_UNDERSCORES.
- Braces should open on the same line as control structures (
if
,for
, etc.), NOT on the next line. - Surround operators with spaces.
- The site uses a Python backend running on Google App Engine.
- Created, designed, and coded by Zachary Yaro.
- Design inspired by LCARS from Star Trek: The Next Generation.
- Python Markdown implementation created by Waylan Limberg.
- GitHub-Flavored Markdown Python implementation by Christian Oudard, mvasilkov, and Matt Westcott.