feat: add externalLinkTarget, close #149

This commit is contained in:
qingwei.li 2017-05-16 23:09:41 +08:00
commit 2d73285de5
No known key found for this signature in database
GPG key ID: B6DDC2F7AE80B2F4
6 changed files with 41 additions and 5 deletions

View file

@ -339,4 +339,14 @@ window.$docsify = {
return time
}
}
```
```
## external-link-target
Currently it defaults to _blank, would be nice if configurable:
```js
window.$docsify = {
externalLinkTarget: '_self' // default: '_blank'
}
```