Skip to content
This repository was archived by the owner on Jun 26, 2020. It is now read-only.

Commit 5f649be

Browse files
committed
Feature: Named existing plugin(s).
1 parent c1b49e9 commit 5f649be

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

src/bold.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ export default class Bold extends Plugin {
2727
return [ BoldEngine ];
2828
}
2929

30+
/**
31+
* @inheritDoc
32+
*/
33+
static get pluginName() {
34+
return 'basic-styles/bold';
35+
}
36+
3037
/**
3138
* @inheritDoc
3239
*/

src/italic.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ export default class Italic extends Plugin {
2727
return [ ItalicEngine ];
2828
}
2929

30+
/**
31+
* @inheritDoc
32+
*/
33+
static get pluginName() {
34+
return 'basic-styles/italic';
35+
}
36+
3037
/**
3138
* @inheritDoc
3239
*/

0 commit comments

Comments
 (0)