Chakra UI Prose
Chakra UI Prose is a "second-party" package that adds ready-made styles to a remote HTML content.
If you need this package to be part of the core library, don't forget to let us know in this discussion thread.
Chakra UI Prose is essentially a custom component that applies styles to its children content.
Integrating the Prose
component is fairly easy. To get started, you need to
install the package:
npm install @nikolovlazar/chakra-ui-prose
yarn add @nikolovlazar/chakra-ui-prose
pnpm add @nikolovlazar/chakra-ui-prose
Then, you need to use the withProse
theme extension to add the Prose component
styling into your own theme:
import { extendTheme } from '@chakra-ui/react'import { withProse } from '@nikolovlazar/chakra-ui-prose'const theme = extendTheme({// your own theme},withProse(),)export default theme
To apply the styles to the remote HTML content, you just need to wrap it with
the Prose
component:
import { Prose } from '@nikolovlazar/chakra-ui-prose'const MyPage = (content) => {return <Prose>{content}</Prose>}export default MyPage
If you want to override the default Prose style, you can do so by providing your
style overrides as an argument to the withProse
extension:
const theme = extendTheme({},withProse({baseStyle: {h2: {fontWeight: 'light',},},}),)
You can refer to the default theme to understand how you can override a certain element style.
There's also a CodeSandbox available that uses the Chakra UI Prose package:
import { Prose } from "@nikolovlazar/chakra-ui-prose"; import { Container } from "@chakra-ui/react"; export default function App() { return ( <Container w="full" maxW="container.lg"> <h1>H1 outside of Prose</h1> <h1>H2 outside of Prose</h1> <h1>H3 outside of Prose</h1> <blockquote>Blockquote outside of Prose</blockquote> <Prose> <h1>Title Heading 1</h1> <h2>Title Heading 2</h2> <h3>Title Heading 3</h3> <h4>Title Heading 4</h4> <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi at dolor nec ex rutrum semper. Praesent ultricies purus eget lectus tristique egestas ac in lacus. Nulla eleifend lorem risus, sit amet dictum nisi gravida eget. Suspendisse odio sem, scelerisque congue luctus nec, scelerisque ultrices orci. Praesent tincidunt, risus ut commodo cursus, ligula orci tristique justo, vitae sollicitudin lacus risus dictum orci. </p> <p> Vivamus vel enim at lorem ultricies faucibus. Cras vitae ipsum ut quam varius dignissim a ac tellus. Aliquam maximus mauris eget tincidunt interdum. Fusce vitae massa non risus congue tincidunt. Pellentesque maximus elit quis eros lobortis dictum. </p> <hr /> <p> Fusce placerat ipsum vel sollicitudin imperdiet. Morbi vulputate non diam at consequat. Donec vitae sem eu arcu auctor scelerisque vel in turpis. Pellentesque dapibus justo dui, quis egestas sapien porttitor in. </p> <h3>Blockquotes</h3> <blockquote>This is a good looking blockquote!</blockquote> <p>And it can span into multiple lines:</p> <blockquote> Fusce placerat ipsum vel sollicitudin imperdiet. Morbi vulputate non diam at consequat. Donec vitae sem eu arcu auctor scelerisque vel in turpis. Pellentesque dapibus justo dui, quis egestas sapien porttitor in. </blockquote> <p> There's also <strong>strong</strong>, <b>b</b>, <em>em</em>{" "} support as well! But, let's display some code! </p> <h3>Code</h3> <pre> <code> {`<article> <h4>Title Heading 4</h4> <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi at dolor nec ex rutrum semper. Praesent ultricies purus eget lectus tristique egestas ac in lacus. Nulla eleifend lorem risus, sit amet dictum nisi gravida eget. Suspendisse odio sem, scelerisque congue luctus nec, scelerisque ultrices orci. Praesent tincidunt, risus ut commodo cursus, ligula orci tristique justo, vitae sollicitudin lacus risus dictum orci. </p> </article>`} </code> </pre> <p> Sometimes you'd want to use <code>inline code</code>, and that would be just fine! </p> <h3>Links</h3> <p> If you want to learn more,{" "} <a href="https://chakra-ui.com">check out our docsite</a>! </p> <h3>Figure</h3> <p> Fusce placerat ipsum vel sollicitudin imperdiet. Morbi vulputate non diam at consequat. Donec vitae sem eu arcu auctor scelerisque vel in turpis. Pellentesque dapibus justo dui, quis egestas sapien porttitor in. </p> <figure> <img alt="Lagos, Nigeria" src="https://images.unsplash.com/photo-1593717191400-84f38ee95485?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2048&q=100" /> <figcaption>Lagos, Nigeria</figcaption> </figure> <p> Fusce placerat ipsum vel sollicitudin imperdiet. Morbi vulputate non diam at consequat. Donec vitae sem eu arcu auctor scelerisque vel in turpis. Pellentesque dapibus justo dui, quis egestas sapien porttitor in. </p> <h3>Lists</h3> <p>Let's look at some unordered lists. Things to buy:</p> <ul> <li>Milk</li> <li>Eggs</li> <li>Bread</li> <li>Chakra UI Pro license</li> </ul> <p>And some ordered lists. Things to do:</p> <ol> <li>Pay the bills</li> <li>Walk the dog</li> <li>Take out trash</li> </ol> <h3>Tables</h3> <table> <thead> <tr> <th>Name</th> <th>Role</th> <th>GitHub Profile</th> </tr> </thead> <tbody> <tr> <td>Segun Adebayo</td> <td>Founder</td> <td>segunadebayo</td> </tr> <tr> <td>Tim Kolberger</td> <td>TypeScript Wizard</td> <td>TimKolberger</td> </tr> <tr> <td>Lazar Nikolov</td> <td>Trouble maker</td> <td>nikolovlazar</td> </tr> <tr> <td>Folasade Agbaje</td> <td>Queen</td> <td>estheragbaje</td> </tr> </tbody> <tfoot> <tr> <th>Name</th> <th>Role</th> <th>GitHub Profile</th> </tr> </tfoot> </table> </Prose> </Container> ); }