Skip to content

Commit c092614

Browse files
committed
added FAQ
1 parent b259937 commit c092614

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

convert-md-2-rst

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
echo "Converting .md → .rst..."
33
pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=python/README.rst README.md
44
pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/README.rst README.md
5-
pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/manual.rst ccxt.wiki/Manual.md
6-
pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/install.rst ccxt.wiki/Install.md
7-
pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/exchanges.rst ccxt.wiki/Exchange-Markets.md
8-
pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/exchanges-by-country.rst ccxt.wiki/Exchange-Markets-By-Country.md
5+
pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/FAQ.rst wiki/FAQ.md
6+
pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/manual.rst wiki/Manual.md
7+
pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/install.rst wiki/Install.md
8+
pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/exchanges.rst wiki/Exchange-Markets.md
9+
pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/exchanges-by-country.rst wiki/Exchange-Markets-By-Country.md
910
echo "Successfully converted .md → .rst"

package.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@
3030
"browserify": "browserify --debug ./ccxt.browser.js > ./build/ccxt.browser.js",
3131
"pandoc-python-readme": "pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=python/README.rst README.md",
3232
"pandoc-doc-readme": "pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/README.rst README.md",
33-
"pandoc-doc-manual": "pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/manual.rst ccxt.wiki/Manual.md",
34-
"pandoc-doc-install": "pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/install.rst ccxt.wiki/Install.md",
35-
"pandoc-doc-exchanges": "pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/exchanges.rst ccxt.wiki/Exchange-Markets.md",
36-
"pandoc-doc-exchanges-by-country": "pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/exchanges-by-country.rst ccxt.wiki/Exchange-Markets-By-Country.md",
33+
"pandoc-doc-faq": "pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/FAQ.rst wiki/FAQ.md",
34+
"pandoc-doc-manual": "pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/manual.rst wiki/Manual.md",
35+
"pandoc-doc-install": "pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/install.rst wiki/Install.md",
36+
"pandoc-doc-exchanges": "pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/exchanges.rst wiki/Exchange-Markets.md",
37+
"pandoc-doc-exchanges-by-country": "pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/exchanges-by-country.rst wiki/Exchange-Markets-By-Country.md",
3738
"postinstall": "opencollective postinstall && node postinstall.js"
3839
},
3940
"types": "./ccxt.d.ts",

wiki/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ Welcome to the ccxt wiki!
6464

6565
## Troubleshooting
6666

67+
- [Frequently Asked Questions](https://github.com/ccxt/ccxt/wiki/FAQ)
6768
- [Overriding The Nonce](https://github.com/ccxt/ccxt/wiki/Manual#overriding-the-nonce)
6869
- [Error Handling](https://github.com/ccxt/ccxt/wiki/Manual#error-handling)
6970
- [Troubleshooting](https://github.com/ccxt/ccxt/wiki/Manual#troubleshooting)

0 commit comments

Comments
 (0)