{ "info": { "author": "Benjamin Althues", "author_email": "benjamin@babab.nl", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Environment :: Web Environment", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", "License :: OSI Approved :: ISC License (ISCL)", "Natural Language :: English", "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Topic :: Adaptive Technologies", "Topic :: Documentation", "Topic :: Internet", "Topic :: Internet :: WWW/HTTP", "Topic :: Office/Business", "Topic :: Text Editors :: Documentation", "Topic :: Text Editors :: Text Processing", "Topic :: Text Processing :: Filters", "Topic :: Text Processing :: Linguistic", "Topic :: Text Processing :: Markup :: HTML", "Topic :: Text Processing :: Markup :: XML", "Topic :: Utilities" ], "description": "Tuhinga\n==============================================================================\n\n.. image:: https://travis-ci.org/babab/tuhinga.svg?branch=master\n :target: https://travis-ci.org/babab/tuhinga\n\nTuhinga is a minimalistic markup language that translates to XML/HTML.\nIt can help you reduce typing and quicken the editing process of HTML\npages. It may remind you a little of HAML since it shares a few common\nconcepts, but it has different goals. HAML is essentially a template\nlanguage, while tuhinga is a tiny markup language primarily aimed to be\njust a precursor for XML/HTML documents.\n\nThe only true goal of Tuhinga is **conciseness**. And this is also\nwhere it stands out against other solutions. It is the prettiest.\nThis means it may never support XML and HTML for the full 100%, since\nthat would cause the need for a much more expansive syntax. Use it if\nyou think HAML is a good idea, but not beatiful enough. Otherwise I'd\nadvise to just use HAML, since it is much more mature and has numerous\nimplementations.\n\nThe implementation of Tuhinga is written in Python. Supported Python\nversions are 2.7 and 3.2 and later.\n\n- Github: http://github.com/babab/tuhinga\n- Bitbucket: http://bitbucket.org/babab/tuhinga\n\n\nA tuhinga example document\n------------------------------------------------------------------------------\n\nAn example of a HTML5 (\\*.tuh) document::\n\n ; Comments start with ;\n\n html5\n head\n meta-charset utf-8\n meta :name=viewport device-width, initial-scale=1.0\n title Page title\n body\n #main.container\n h1.page-header Page title\n .row\n .col-lg-12\n p Paragraph line 1\n :: line 2\n :: line 3\n small line 4\n p\n :: line 1\n :: line 2\n #footer.container\n p.muted Copyright & 2015 Me\n\nAfter converting to HTML:\n\n.. code-block:: html\n\n \n \n
\n \n \n\n Paragraph line 1\n line 2\n line 3\n line 4\n
\n\n line 1\n line 2\n
\n