2020-09-16 23:01:47 +08:00
# Custom styling
2020-10-28 22:25:06 +08:00
## toc
2020-09-27 16:29:01 +08:00
2020-10-01 18:26:20 +08:00
## Introduction
2020-11-13 18:04:31 +08:00
tiptap is headless, that means there is no styling provided. That also means, you are in full control of how your editor looks. The following methods allow you to apply custom styles to the editor.
2020-10-01 18:26:20 +08:00
2020-09-22 22:03:31 +08:00
## Option 1: Style the plain HTML
The whole editor is rendered inside of a container with the class `.ProseMirror` . You can use that to scope your styling to the editor content:
2020-09-16 23:01:47 +08:00
```css
2020-09-22 22:03:31 +08:00
/* Scoped to the editor */
2020-10-03 03:11:01 +08:00
.ProseMirror p {
2020-09-22 22:03:31 +08:00
margin: 1em 0;
}
```
If you’ re rendering the stored content somewhere, there won’ t be a `.ProseMirror` container, so you can just globally add styling to the used HTML tags:
```css
/* Global styling */
2020-10-03 03:11:01 +08:00
p {
2020-09-16 23:01:47 +08:00
margin: 1em 0;
}
```
2020-09-22 22:03:31 +08:00
## Option 2: Add custom classes
Most extensions have a `class` option, which you can use to add a custom CSS class to the HTML tag.
2020-09-16 23:01:47 +08:00
2020-12-01 22:42:36 +08:00
### Extensions
Most extensions allow you to add attributes to the rendered HTML through the `HTMLAttributes` option. You can use that to add a custom class (or any other attribute). That’ s also very helpful, when you work with [Tailwind CSS ](https://tailwindcss.com/ ).
2020-10-28 23:32:06 +08:00
2020-09-16 23:01:47 +08:00
```js
new Editor({
extensions: [
2020-11-16 17:03:12 +08:00
Document,
2020-11-16 18:07:06 +08:00
Paragraph.configure({
2020-11-16 17:03:12 +08:00
HTMLAttributes: {
2020-10-28 23:32:06 +08:00
class: 'my-custom-paragraph',
},
2020-09-16 23:01:47 +08:00
}),
2020-11-16 18:07:06 +08:00
Heading.configure({
2020-11-16 17:03:12 +08:00
HTMLAttributes: {
2020-10-28 23:32:06 +08:00
class: 'my-custom-heading',
},
2020-09-16 23:01:47 +08:00
}),
2020-11-16 17:03:12 +08:00
Text,
2020-09-16 23:01:47 +08:00
]
})
```
2020-09-22 22:03:31 +08:00
The rendered HTML will look like that:
2020-09-16 23:01:47 +08:00
```html
< h1 class = "my-custom-heading" > Example Text< / p >
< p class = "my-custom-paragraph" > Wow, that’ s really custom.< / p >
```
2020-10-28 23:32:06 +08:00
If there are already classes defined by the extensions, your classes will be added.
2020-12-01 22:42:36 +08:00
### Editor
You can even pass classes to the element which contains the editor like that:
```js
new Editor({
editorProps: {
attributes: {
class: 'prose prose-sm sm:prose lg:prose-lg xl:prose-2xl mx-auto focus:outline-none',
}
},
})
```
2020-09-22 22:03:31 +08:00
## Option 3: Customize the HTML
2020-09-16 23:01:47 +08:00
You can even customize the markup for every extension. This will make a custom bold extension that doesn’ t render a `<strong>` tag, but a `<b>` tag:
```js
import Bold from '@tiptap/extension-bold'
2020-10-28 23:32:06 +08:00
const CustomBold = Bold.extend({
2020-11-16 17:03:12 +08:00
renderHTML({ HTMLAttributes }) {
2020-10-28 23:32:06 +08:00
// Original:
2020-11-16 17:03:12 +08:00
// return ['strong', HTMLAttributes, 0]
return ['b', HTMLAttributes, 0]
2020-10-28 23:32:06 +08:00
},
})
2020-09-16 23:01:47 +08:00
new Editor({
extensions: [
// …
CustomBold(),
]
})
```
2020-10-28 23:32:06 +08:00
You should put your custom extensions in separate files though, but I think you got the idea.