initial commit

This commit is contained in:
CaiHQ
2021-09-25 01:43:11 +08:00
parent 59cecf6dd7
commit 4a41bb44ca
146 changed files with 23170 additions and 0 deletions

19
toRst.sh Normal file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
cd source
rm -rf ContractAPI.rst
rm -rf IDEUsage.rst
rm -rf InstallTips.rst
rm -rf Introduction.rst
rm -rf YJSAPI.rst
rm -rf YJSInDepth.rst
pandoc ./markdown/ContractAPI.md -f markdown -t rst -o ContractAPI.rst
pandoc ./markdown/IDEUsage.md -f markdown -t rst -o IDEUsage.rst
pandoc ./markdown/InstallTips.md -f markdown -t rst -o InstallTips.rst
pandoc ./markdown/Introduction.md -f markdown -t rst -o Introduction.rst
pandoc ./markdown/YJSAPI.md -f markdown -t rst -o YJSAPI.rst
pandoc ./markdown/YJSInDepth.md -f markdown -t rst -o YJSInDepth.rst
cd ..
make clean
make html