Skip to content

Commit 79928de

Browse files
authored
Merge pull request #1156 from dungahk/patch-1
Fix typo on `externalLinkRel`
2 parents b2dd708 + d5a7507 commit 79928de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/configuration.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -446,11 +446,11 @@ window.$docsify = {
446446
- type: `String`
447447
- default: `noopener`
448448

449-
Default `'noopener'` (no opener) prevents the newly opened external page (when [externalLinkTarget](#externallinktarget) is `'_blank'`) from having the ability to control our page. No `rel` is set when its not `'_blank'`.
449+
Default `'noopener'` (no opener) prevents the newly opened external page (when [externalLinkTarget](#externallinktarget) is `'_blank'`) from having the ability to control our page. No `rel` is set when its not `'_blank'`. See [this post](https://mathiasbynens.github.io/rel-noopener/) for more information about why you may want to use this option.
450450

451451
```js
452452
window.$docsify = {
453-
externalLinkTarget: '', // default: 'noopener'
453+
externalLinkRel: '', // default: 'noopener'
454454
};
455455
```
456456

0 commit comments

Comments
 (0)