From afe798626a7606ca2f2c165467855a2a69b88598 Mon Sep 17 00:00:00 2001 From: Riley Lynch Date: Wed, 9 Jan 2013 13:06:57 -0500 Subject: [PATCH] Add filter attribute name to extension example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a198541..6df944d 100644 --- a/README.md +++ b/README.md @@ -256,7 +256,7 @@ Alternately, if you'd just like to do everything yourself, you can specify a fil var demo = function(converter) { return [ // Replace escaped @ symbols - { type: 'lang', function(text) { + { type: 'lang', filter: function(text) { return text.replace(/\\@/g, '@'); }} ];