mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-11-04 21:43:42 +00:00
24 lines
473 B
Makefile
24 lines
473 B
Makefile
# Copyright 2015 Golang-China. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
# install gitbook
|
|
# npm install gitbook-cli -g
|
|
|
|
# https://github.com/GitbookIO/gitbook
|
|
# https://github.com/wastemobile/gitbook
|
|
|
|
default:
|
|
gitbook build
|
|
|
|
zh2tw:
|
|
go run zh2tw.go . .md$$
|
|
|
|
tw2zh:
|
|
go run zh2tw.go . .md$$ tw2zh
|
|
|
|
loop:
|
|
go run zh2tw.go . .md$$ tw2zh
|
|
go run zh2tw.go . .md$$ zh2tw
|
|
|