From 4d6a7669a68cc4ec277f8480a00844b185fe377d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20Ram=C3=ADrez?= Date: Thu, 24 Oct 2013 11:45:05 -0600 Subject: [PATCH] Fixing typos in readme. --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c6b452a..1bef237 100644 --- a/README.md +++ b/README.md @@ -58,15 +58,17 @@ To be documented... ### Builtin Filters -Secretary includes some predefined *jinja2* filters. Included filters are: +Apart of the available Jinja2 filters. Secretary includes some additionals filters. These are: - **markdown(value)** -Convert the value, a markdown formated string, into a ODT formated text. Example: + Convert the value, a markdown formated string, into a ODT formated text. Example: {{ invoice.description|markdown }} + **Output value will take the whole paragraph** so be aware of loosing text which is on the same paragraph of the markdown field. + - **pad(value, length)** -Pad zeroes to `value` to the left until output value's length be equal to `length`. Default length if 5. Example: + Pad zeroes to `value` to the left until output's length will equal to `length`. Default output length is 5. Example: {{ invoice.number|pad(6) }}