pongo2-addons/README.md

35 lines
1.6 KiB
Markdown
Raw Normal View History

2014-07-20 00:42:24 +02:00
# pongo2-addons
2014-07-20 00:24:32 +02:00
2014-07-26 17:42:22 +02:00
[![Build Status](https://travis-ci.org/flosch/pongo2-addons.svg?branch=master)](https://travis-ci.org/flosch/pongo2-addons)
[![GitTip](http://img.shields.io/badge/gittip-support%20pongo-brightgreen.svg)](https://www.gittip.com/flosch/)
2014-07-20 00:42:24 +02:00
Official filter and tag add-ons for [pongo2](https://github.com/flosch/pongo2). Uses 3rd-party-libraries.
2014-07-20 00:50:56 +02:00
## How to use and install
Install via `go get -u github.com/flosch/pongo2-addons`.
2014-07-20 00:44:13 +02:00
Simply add the following import line **after** importing pongo2:
_ "github.com/flosch/pongo2-addons"
2014-07-20 00:50:56 +02:00
All additional filters/tags will be registered automatically.
2014-07-20 00:44:13 +02:00
2014-07-20 00:42:24 +02:00
## Filters
2014-07-28 16:29:41 +02:00
- Regulars
- **[slugify](https://docs.djangoproject.com/en/dev/ref/templates/builtins/#slugify)** (creates a slug for a given input)
- **[filesizeformat](https://docs.djangoproject.com/en/dev/ref/templates/builtins/#filesizeformat)** (human-readable filesize; takes bytes as input)
- Markup
- **markdown** (parses markdown text and outputs HTML; **hint**: use the **safe**-filter to make the output not being escaped)
- Humanize
- **[timesince](https://docs.djangoproject.com/en/dev/ref/templates/builtins/#timesince)/[timeuntil](https://docs.djangoproject.com/en/1.6/ref/templates/builtins/#timeuntil)/[naturaltime](https://docs.djangoproject.com/en/dev/ref/contrib/humanize/#naturaltime)** (human-readable time [duration] indicator)
- **[intcomma](https://docs.djangoproject.com/en/dev/ref/contrib/humanize/#intcomma)** (put decimal marks into the number)
- **[ordinal](https://docs.djangoproject.com/en/dev/ref/contrib/humanize/#ordinal)** (convert integer to its ordinal as string)
2014-07-20 00:42:24 +02:00
## Tags
2014-07-20 00:44:13 +02:00
(nothing yet)