Skip to content

Commit

Permalink
update/
Browse files Browse the repository at this point in the history
  • Loading branch information
Koooooo-7 committed Jun 3, 2022
1 parent 8a58bd3 commit 3a800b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ window.$docsify = {

Determines if Docsify should handle uncaught _synchronous_ plugin errors automatically. This can prevent plugin errors from affecting docsify's ability to properly render live site content.

## cornerExternalLinkTargett
## cornerExternalLinkTarget

- Type: `String`
- Default: `'_blank'`
Expand All @@ -111,7 +111,7 @@ Target to open external link at the top right corner. Default `'_blank'` (new wi

```js
window.$docsify = {
cornerExternalLinkTargett: '_self', // default: '_blank'
cornerExternalLinkTarget: '_self', // default: '_blank'
};
```

Expand Down
2 changes: 1 addition & 1 deletion src/core/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function (vm) {
autoHeader: false,
basePath: '',
catchPluginErrors: true,
cornerExternalLinkTargett: '_blank',
cornerExternalLinkTarget: '_blank',
coverpage: '',
crossOriginLinks: [],
el: '#app',
Expand Down

0 comments on commit 3a800b6

Please sign in to comment.