Skip to content

Commit 11762cb

Browse files
committed
Merged upstream develop and resolved the conflict
2 parents 4769018 + 8f496d8 commit 11762cb

File tree

17 files changed

+9266
-5665
lines changed

17 files changed

+9266
-5665
lines changed

Diff for: .github/FUNDING.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
open_collective: docsify
2+

Diff for: build/build.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const rollup = require('rollup')
22
const buble = require('rollup-plugin-buble')
33
const commonjs = require('rollup-plugin-commonjs')
44
const nodeResolve = require('rollup-plugin-node-resolve')
5-
const uglify = require('rollup-plugin-uglify')
5+
const { uglify } = require('rollup-plugin-uglify')
66
const replace = require('rollup-plugin-replace')
77
const isProd = process.env.NODE_ENV === 'production'
88
const version = process.env.VERSION || require('../package.json').version

Diff for: docs/configuration.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -397,14 +397,27 @@ window.$docsify = {
397397
- type: `String`
398398
- default: `_blank`
399399

400-
Target to open external links. Default `'_blank'` (new window/tab)
400+
Target to open external links inside the markdown. Default `'_blank'` (new window/tab)
401401

402402
```js
403403
window.$docsify = {
404404
externalLinkTarget: '_self' // default: '_blank'
405405
};
406406
```
407407

408+
## cornerExternalLinkTarget
409+
410+
- type:`String`
411+
- default:`_blank`
412+
413+
Target to open external link at the top right corner. Default `'_blank'` (new window/tab)
414+
415+
```js
416+
window.$docsify = {
417+
cornerExternalLinkTarget: '_self' // default: '_blank'
418+
};
419+
```
420+
408421
## externalLinkRel
409422

410423
- type: `String`

Diff for: docs/deploy.md

+6
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,12 @@ When using the HTML5 router, you need to set up redirect rules that redirect all
8888
/* /index.html 200
8989
```
9090

91+
## ZEIT Now
92+
93+
1. Install [Now CLI](https://zeit.co/download), `npm i -g now`
94+
2. Change directory to your docsify website, for example `cd docs`
95+
3. Deploy with a single command, `now`
96+
9197
## AWS Amplify
9298

9399
1. Set the routerMode in the Docsify project `index.html` to *history* mode.

0 commit comments

Comments
 (0)