Metadata-Version: 2.0
Name: django-codesnip
Version: 0.2.3
Summary: A Django app to store code snippets with syntax highlighting utilizing pygments.
Home-page: https://github.com/vacuus/django-codesnip
Author: Alejandro Angulo
Author-email: aab.j13@gmail.com
License: LGPLv3
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Dist: pygments

Codesnip
========

Codesnip is a Django app to store code snippets with syntax highlighting.
**This app requires [pygments](http://pygments.org/).**

Detailed documentation is in the "docs" directory.

Quick start
-----------

1.  Add "shortcodes" to your INSTALLED\_APPS setting like this:
    ```python
    INSTALLED_APPS = [
        ...
        'codesnip',
    ]
    ```

2.  Run `python manage.py migrate` to create the Snippet model.

3.  Start the development server and visit http://127.0.0.1:8000/admin/ to
    create a code snippet (you'll need the Admin app enabled).


