From 393cf2e0e256d27a6568e57f5c9480664c96a13a Mon Sep 17 00:00:00 2001 From: Sascha Egerer Date: Tue, 1 Mar 2016 16:12:37 +0100 Subject: [PATCH] Add missing parameter in styleguideProcessors description --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5b736a74..edc39247 100644 --- a/README.md +++ b/README.md @@ -343,10 +343,11 @@ You can define your own processors: ```js styleguideProcessors: { - 11: function() { + 11: function(styleguide) { // this will run after replaceSectionReferences + styleguide.sections[0].description = styleguide.sections[0].description + ' [Description from custom Processor]'; }, - 30: function() { + 30: function(styleguide) { // this will run after generateSectionWrapperMarkup } }