Metadata-Version: 1.0
Name: mdx_smartypants
Version: 1.0.3
Summary: Python-Markdown extension that uses smartypants to provide typographically nicer ("curly") quotes, proper ("em" and "en") dashes, etc.
Home-page: http://bitbucket.org/jeunice/mdx_smartypants
Author: Jonathan Eunice
Author-email: jonathan.eunice@gmail.com
License: UNKNOWN
Description: 
        
        A Python-Markdown extension that uses smartypants to provide typographically nicer ("curly") quotes, proper ("em" and "en") dashes, etc.
        
        Installation
        ============
        
        ::
        
            pip install mdx_smartypants
            
        Failing that, fall back to the older approach::
        
            easy_install mdx_smartypants
            
        (You may need to begin these with "sudo ".)
        
        Usage
        =====
        
        ::
          
            import markdown
            import mdx_smartypants
            
            text = """
            Markdown makes HTML from simple text files. But--it lacks typographic
            "prettification." That... That'd be sweet. Definitely 7---8 on a '10-point
            scale'. Now it has it.
            
            Huzzah!
            """
            
            print markdown.markdown(text, extensions=['smartypants'])
        
        This produces nice HTML output, including typographically "pretty" quotes and
        other punctuation. It also renders HTML entites in their named rather than
        numeric form, which is easier on the eyes and more readily comprehended::
        
            <p>Markdown makes HTML from simple text files. But&mdash;it lacks
            typographic &ldquo;prettification.&rdquo; That&hellip; That&rsquo;d be
            sweet. Definitely 7&ndash;8 on a &lsquo;10-point scale&rsquo;. Now it has
            it.</p>
            <p>Huzzah!</p>
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Text Processing :: Markup :: HTML
