Metadata-Version: 1.1
Name: md2remark
Version: 0.1.0
Summary: Builds a slideshow from markdown using remark.js.
Home-page: https://github.com/patrickayoup/md2remark/
Author: Patrick Ayoup
Author-email: patrick.ayoup@gmail.com
License: MIT
Download-URL: https://github.com/patrickayoup/md2remark/tarball/0.1.0
Description: md2remark
        =========
        
        |TravisCI Status|
        |Coveralls Status|
        |Documentation Status|
        |PyPi Package Status|
        
        Compiles markdown files to html files for remark.js
        
        Read the documentation at `Read the Docs!`_
        
        Setting Up the Development Environment
        --------------------------------------
        
        The development environment is based on a Centos 7 environment managed
        by Vagrant.
        
        Pre-Requisites
        ~~~~~~~~~~~~~~
        
        -  `Vagrant`_
        -  `ChefDK`_
        
        Once Vagrant and the ChefDK are installed, you must install the
        vagrant-berkshelf plugin for Vagrant which allows the use of Berkshelf
        to manage cookbooks for provisioning the virtual machine, and the
        vagrant-omnibus plugin which installs chef on the vm allowing it to be
        provisioned.
        
        .. code:: bash
        
            vagrant plugin install vagrant-berkshelf
            vagrant plugin install vagrant-omnibus
        
        Create the Development Environment
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        The creation of the development environment is automated by Vagrant.
        Simply run the following:
        
        .. code:: bash
        
            vagrant up
        
        from the root directory of this project.
        
        Once the virtual machine is provisioned, login to the vm:
        
        .. code:: bash
        
            vagrant ssh
        
        Create and activate a virtualenv:
        
        .. code:: bash
        
            mkvirtualenv md2remark
        
        Install the dependencies:
        
        .. code:: bash
        
            pip install -r /vagrant/requirements.txt
        
        .. _Read the Docs!: http://md2remark.readthedocs.org/en/latest/
        .. _Vagrant: http://www.vagrantup.com
        .. _ChefDK: http://downloads.getchef.com/chef-dk/
        
        .. |Documentation Status| image:: https://readthedocs.org/projects/md2remark/badge/?version=latest
           :target: https://readthedocs.org/projects/md2remark/?badge=latest
        
        .. |PyPi Package Status| image:: https://badge.fury.io/py/md2remark.svg
            :target: http://badge.fury.io/py/md2remark
        
        .. |TravisCI Status| image:: https://travis-ci.org/patrickayoup/md2remark.svg?branch=master
            :target: https://travis-ci.org/patrickayoup/md2remark
        
        .. |Coveralls Status| image:: https://coveralls.io/repos/patrickayoup/md2remark/badge.png?branch=master
            :target: https://coveralls.io/r/patrickayoup/md2remark?branch=master
Keywords: markdown,slideshow
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Utilities
