Skip to content

Commit

Permalink
[Docs] Disable style documentation for @global identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Jesper Low Madsen committed Jan 31, 2020
1 parent a66ec34 commit 4459b2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/modules/utils/generateMarkdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ function generateClasses(reactAPI) {

text = `| Rule name | Global class | Description |
|:-----|:-------------|:------------|\n`;
text += reactAPI.styles.classes
text += reactAPI.styles.classes.filter(cls => cls !== '@global')
.map(styleRule => {
const description = reactAPI.styles.descriptions[styleRule];

Expand Down

0 comments on commit 4459b2f

Please sign in to comment.