A bold title/text editor to accentuate certain parts through HTML or Markdown.
This plugin has been refactored to use only Strapi v5. For older releases see npm.
- Different output options: choose between HTML and Markdown.
- Actions: accentuate certain parts, preview code output and clear text format.
# Using Yarn
yarn add @ef2/strapi-plugin-bold-title-editor
# Or using NPM
npm install @ef2/strapi-plugin-bold-title-editor
Then, you'll need to build your admin panel:
# Using Yarn
yarn build
# Or using NPM
npm run build
<h1 dangerouslySetInnerHTML={{ __html: title }} />
<h3><a href="#" dangerouslySetInnerHTML={{ __html: title }} /></h3>
<h1 v-html="title" />
<h3><a href="#" v-html="title" /></h3>
import ReactMarkdown from 'react-markdown';
<ReactMarkdown children={title} />;