Metadata-Version: 1.0
Name: liquidluck
Version: 3.5
Summary: A lightweight static weblog generator
Home-page: http://lab.lepture.com/liquidluck/
Author: Hsiaoming Yang
Author-email: lepture@me.com
License: BSD License
Description: Felix Felicis
        ==============
        
        .. image:: https://secure.travis-ci.org/lepture/liquidluck.png?branch=develop
            :target: https://secure.travis-ci.org/lepture/liquidluck
        
        
        Felix Felicis (aka ``liquidluck``) is a simple lightweight static blog generator
        written in Python.
        
        **There are so many static blog generators, why create a new one?**
        
        The main design pattern of Felix Felicis:
        
        1. Beautiful is better than ugly.
        2. Nothing is better than everything.
        
        
        `Documentation <http://liquidluck.readthedocs.org>`_ is available on RTD.
        
        Post Syntax Overview
        ----------------------
        
        A post in markdown::
        
            # Hello World
        
            - date: 2012-06-11
            - tags: python, javascript
        
            -------
        
            Hello World in Python
        
            ```python
            def hello(name="World"):
                print "Hello %s" % name
            ```
        
            Hello World in JavaScript
        
            ```javascript
            function hello(name) {
                alert('Hello ' + name);
            }
            ```
        
        A post in restructuredText::
        
            Hello World
            ============
        
            :date: 2012-06-11
            :tags: python, javascript
        
            Hello World in Python::
        
                def hello(name="World"):
                    print "Hello %s" % name
        
            Hello World in JavaScript:
        
            .. sourcecode:: javascript
        
                function hello(name) {
                    alert('Hello ' + name);
                }
        
        Both of these two posts are valid in their markup language, even without Felix Felicis
        they should be displayed well.
        
        And in this case, your documents will always be yours, not tied to Felix Felicis.
        
        
        Features
        -----------
        
        - Category, Tag, Post, Page, Feed and everything a blog should have
        - Beautiful and valid syntax supports
        - Full customizable theme supports
        - No extension system (Is this a feature? YES!)
        - GitHub and BitBucket web hook service
        - Live preview server
        
        
        Compatibility
        --------------
        
        + Markup:
        
          - restructedText_
          - markdown_
        
        + Python:
        
          - 2.6
          - 2.7
          - 3.1
          - 3.2
        
        
        .. _restructedText: http://docutils.sourceforge.net/rst.html
        .. _markdown: http://daringfireball.net/projects/markdown/
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Text Processing :: Markup
