A bold title/text editor to accent certain parts
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.
# 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
1<h1 dangerouslySetInnerHTML={{ __html: title }} />
2<h3><a href="#" dangerouslySetInnerHTML={{ __html: title }} /></h3>
1<h1 v-html="title" />
2<h3><a href="#" v-html="title" /></h3>
1import ReactMarkdown from 'react-markdown';
2
3<ReactMarkdown children={title} />;
npm install @ef2/strapi-plugin-bold-title-editor
Check out the available plugin resources that will help you to develop your plugin or provider and get it listed on the marketplace.