We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd20cf0 commit ca5288fCopy full SHA for ca5288f
draft-js-linkify-plugin/README.md
@@ -12,12 +12,11 @@ import createLinkifyPlugin from 'draft-js-linkify-plugin';
12
const linkifyPlugin = createLinkifyPlugin();
13
```
14
15
-You may also optionally set a prefix or define the target value for the resulting `<a>` tag:
+You may also optionally set the target value for the resulting `<a>` tag:
16
17
```js
18
const linkifyPlugin = createLinkifyPlugin({
19
- prefix: 'https://', // default is 'http://'
20
- target: '_blank' // default is '_self'
+ target: '_blank' // default is '_self'
21
});
22
23
0 commit comments