You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
798 B

7 years ago
  1. # Tendermint RPC
  2. ## Generate markdown for [Slate](https://github.com/tendermint/slate)
  3. We are using [Slate](https://github.com/tendermint/slate) to power our RPC
  4. documentation. For generating markdown use:
  5. ```shell
  6. go get github.com/davecheney/godoc2md
  7. godoc2md -template rpc/core/doc_template.txt github.com/tendermint/tendermint/rpc/core | grep -v -e "pipe.go" -e "routes.go" -e "dev.go" | sed 's$/src/target$https://github.com/tendermint/tendermint/tree/master/rpc/core$'
  8. ```
  9. For more information see the [CI script for building the Slate docs](/scripts/slate.sh)
  10. ## Pagination
  11. Requests that return multiple items will be paginated to 30 items by default.
  12. You can specify further pages with the ?page parameter. You can also set a
  13. custom page size up to 100 with the ?per_page parameter.