Skip to content

Commit

Permalink
Add missing parameter in styleguideProcessors description
Browse files Browse the repository at this point in the history
  • Loading branch information
Sascha Egerer committed Mar 1, 2016
1 parent 3b7d31c commit 393cf2e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
Expand Down

0 comments on commit 393cf2e

Please sign in to comment.