Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 11762cb

Browse filesBrowse files
committed
Merged upstream develop and resolved the conflict
2 parents 4769018 + 8f496d8 commit 11762cb
Copy full SHA for 11762cb

17 files changed

+9,266-5,665Lines changed: 9266 additions & 5665 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎.github/FUNDING.yml‎

Copy file name to clipboard
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
open_collective: docsify
2+
Collapse file

‎build/build.js‎

Copy file name to clipboardExpand all lines: build/build.js
+1-1Lines changed: 1 addition & 1 deletion
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
Collapse file

‎docs/configuration.md‎

Copy file name to clipboardExpand all lines: docs/configuration.md
+14-1Lines changed: 14 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
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`
Collapse file

‎docs/deploy.md‎

Copy file name to clipboardExpand all lines: docs/deploy.md
+6Lines changed: 6 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.