-
-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4f9a02e
commit 512b48f
Showing
2 changed files
with
41 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,26 @@ | ||
dist | ||
node_modules | ||
test/out | ||
|
||
npm-debug.log* | ||
lerna-debug.log | ||
yarn-error.log | ||
package-lock.json | ||
|
||
.DS_Store | ||
.cache | ||
.vscode | ||
.idea | ||
|
||
*.bak | ||
*.tem | ||
*.temp | ||
#.swp | ||
*.*~ | ||
~*.* | ||
|
||
# IDEA | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,25 @@ | ||
{ | ||
"version": "1.0.0", | ||
"title": "Go语言快速入门", | ||
"scripts": { | ||
"start": "idoc --watch", | ||
"build": "idoc" | ||
}, | ||
"markdown-to-html": { | ||
"github-corners": "https://github.com/jaywcjlove/golang-tutorial", | ||
"document": { | ||
"title": "Go 语言快速入门", | ||
"meta": [ | ||
{ "description": "通过简单的例子,来快速入门Go语言基础编程、语法等各种语言特性,主要面向新手级别的学习者。" }, | ||
{ "keywords": "golang,tutorial,go,golang-tutorial" } | ||
{ | ||
"description": "通过简单的例子,来快速入门Go语言基础编程、语法等各种语言特性,主要面向新手级别的学习者。" | ||
}, | ||
{ | ||
"keywords": "golang,tutorial,go,golang-tutorial" | ||
} | ||
] | ||
} | ||
}, | ||
"devDependencies": { | ||
"idoc": "^1.21.4" | ||
} | ||
} | ||
} |