Skip to content

Commit

Permalink
polish
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Feb 1, 2024
1 parent 824dc01 commit 54c1aa4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions packages/markdown/prepareMarkdown.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-irregular-whitespace */
const fs = require('fs');
const path = require('path');
const kebabCase = require('lodash/kebabCase');
Expand Down Expand Up @@ -100,11 +101,17 @@ function prepareMarkdown(config) {
const contents = getContents(markdown);

if (headers.unstyled) {
// TODO v7:
// contents.push(`
// ## Unstyled

// To completely own the design, without having to customize the built-in styles of Material UI, use the [Base UI ${markdownH1}](${headers.unstyled}). It's the unstyled version of the same component Material UI is built on top of. It's great for heavy customizations or smaller bundle sizes.
// `);

contents.push(`
## Unstyled
To completely own the design, without having to customize parting from Material Design, use the [Base UI ${markdownH1}](${headers.unstyled}) for an unstyled version of this component
Use this component for heavy customizations or smaller bundle sizes.
To completely own the design, without having to customize the built-in styles of Material UI, use the [Base UI ${markdownH1}](${headers.unstyled}). It's the unstyled version of the same component. It's great for heavy customizations or smaller bundle sizes.
`);
}

Expand Down

0 comments on commit 54c1aa4

Please sign in to comment.