Metadata-Version: 1.1
Name: meow
Version: 0.1.1
Summary: meow is an editor-agnostic markdown/reST live preview server.
Home-page: https://github.com/hhatto/meow
Author: Hideo Hattori
Author-email: hhatto.jp@gmail.com
License: MIT
Description: ====
        Meow
        ====
        
        About
        =====
        
        Meow is an editor-agnostic markdown and reStructuredText live previewer.
        Once you save your file, the rendered HTML will automatically get reloaded
        in your favourite browser.
        
        The Original Version is moo_ . Meow fork from moo ( `commit history`_ ), And add function of
        reStructuredText live previewer.
        
        .. _moo: https://github.com/pyrocat101/moo
        .. _`commit history`: https://github.com/pyrocat101/moo/commits/876de66f792ac42df7dba2e1416fb7aeae8feeb2
        
        Installation
        ============
        
        .. code-block:: bash
        
            pip install meow
        
        Requirements
        ============
        
        meow requires
        
        * sundown_
        * misaka_
        * `bottle.py`_
        * pygments_
        * docutils_
        * CherryPy_
        
        .. _sundown: https://github.com/vmg/sundown
        .. _misaka: https://github.com/FSX/misaka
        .. _`bottle.py`: http://bottlepy.org/
        .. _pygments: http://pygments.org/
        .. _docutils: https://pypi.python.org/pypi/docutils
        .. _CherryPy: http://www.cherrypy.org/
        
        Usage
        =====
        
        Opens preview in browser with server listening on 3000::
        
            meow --port 3000 your-doc.markdown
        
        Export to HTML only::
        
            meow -o exported.html your-doc.markdown
        
        RESTful API
        ===========
        
        +-------------------------+-------------+----------------------------------+-------------------------+
        | Action                  | HTTP Method | Request URL                      | Response Body           |
        +=========================+=============+==================================+=========================+
        | Get preview             | GET         | http://localhost:\<port\>        | \<Preview content\>     |
        +-------------------------+-------------+----------------------------------+-------------------------+
        | Get updated content     | POST        | http://localhost:\<port\>/update | \<Rendered body\>       |
        +-------------------------+-------------+----------------------------------+-------------------------+
        | Close server            | DELETE      | http://localhost:\<port\>        |                         |
        +-------------------------+-------------+----------------------------------+-------------------------+
        
        See `source files`_ for more details.
        
        .. _`source files`: https://github.com/hhatto/meow
        
        License
        =======
        
        (The MIT License)
        
        Links
        =====
        * GitHub_
        * PyPI_
        
        .. _GitHub: https://github.com/hhatto/meow
        .. _PyPI: https://pypi.python.org/pypi/meow/
        
Keywords: markdown,reStructuredText,pygments,preview,bottle,github
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Utilities
