├── .gitignore ├── fmt.sh ├── .gitattributes ├── proc.sh ├── footer-cn.html.inc ├── footer-jp.html.inc ├── footer-ru.html.inc ├── footer.html.inc ├── publish.sh ├── README.md ├── toc.sh ├── Makefile ├── header.html.inc ├── header-cn.html.inc ├── header-jp.html.inc ├── header-ru.html.inc ├── LICENSE ├── effectivescala-cn.mo ├── effectivescala-ja.mo └── effectivescala.mo /.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.png 3 | -------------------------------------------------------------------------------- /fmt.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sed 's;^\.LP \(.*\)$;
\1
;g' 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.mo linguist-language=Markdown 2 | *.inc linguist-language=HTML 3 | -------------------------------------------------------------------------------- /proc.sh: -------------------------------------------------------------------------------- 1 | awk ' 2 | /^\.cmd *$/{ 3 | cmd="" 4 | inshell="yes" 5 | next 6 | } 7 | 8 | /^\.endcmd *$/{ 9 | system(cmd) 10 | inshell="" 11 | next 12 | } 13 | 14 | { if(inshell) 15 | cmd=cmd $0 "\n" 16 | else 17 | print 18 | } 19 | ' 20 | -------------------------------------------------------------------------------- /footer-cn.html.inc: -------------------------------------------------------------------------------- 1 | 2 |