chore: documented __colon__ tip (#1025)

This commit is contained in:
Anix
2020-02-14 20:41:53 +05:30
committed by GitHub
parent 2639be7773
commit a111df9980
3 changed files with 5 additions and 4 deletions
+1 -2
View File
@@ -1,4 +1,3 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
+2
View File
@@ -369,6 +369,8 @@ window.$docsify = {
};
```
?> If this options is `false` but you dont want to emojify some specific colons , [Refer this](https://github.com/docsifyjs/docsify/issues/742#issuecomment-586313143)
## mergeNavbar
- type: `Boolean`
+2 -2
View File
@@ -27,7 +27,7 @@
"dev": "run-p serve watch:*",
"dev:ssr": "run-p serve:ssr watch:*",
"lint": "eslint .",
"fixlint" : "eslint . --fix",
"fixlint": "eslint . --fix",
"test": "mocha ./test/**/*.test.js",
"testServer": "node cypress/setup.js",
"test:e2e": "start-server-and-test testServer http://localhost:3000 cy:run",
@@ -55,7 +55,7 @@
},
"lint-staged": {
"*.js": [
"npm run lint",
"npm run fixlint",
"git add"
]
},