From 5d448f57ec0943517ce4a0f39034507cc1d58dfd Mon Sep 17 00:00:00 2001 From: Cole R Lawrence Date: Sat, 15 Mar 2014 15:45:08 -0700 Subject: [PATCH] Fix filter example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a198541..2f85b1d 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: 'output', filter: function(text) { return text.replace(/\\@/g, '@'); }} ];