Merge pull request #2170 from freqtrade/fix/docboxes

Fix documentation boxes
This commit is contained in:
Matthias 2019-08-22 12:44:35 +02:00 committed by GitHub
commit 098159ad41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View File

@ -36,6 +36,11 @@ jobs:
name: hyperopt name: hyperopt
- script: flake8 freqtrade scripts - script: flake8 freqtrade scripts
name: flake8 name: flake8
- script:
# Test Documentation boxes -
# !!! <TYPE>: is not allowed!
- grep -Er '^!{3}\s\S+:' docs/*; test $? -ne 0
name: doc syntax
- script: mypy freqtrade scripts - script: mypy freqtrade scripts
name: mypy name: mypy

View File

@ -2,7 +2,7 @@
This page explains the different parameters of the bot and how to run it. This page explains the different parameters of the bot and how to run it.
!!! Note: !!! Note
If you've used `setup.sh`, don't forget to activate your virtual environment (`source .env/bin/activate`) before running freqtrade commands. If you've used `setup.sh`, don't forget to activate your virtual environment (`source .env/bin/activate`) before running freqtrade commands.
@ -141,6 +141,7 @@ Learn more about strategy file in
This parameter allows you to add an additional strategy lookup path, which gets This parameter allows you to add an additional strategy lookup path, which gets
checked before the default locations (The passed path must be a directory!): checked before the default locations (The passed path must be a directory!):
```bash ```bash
freqtrade --strategy AwesomeStrategy --strategy-path /some/directory freqtrade --strategy AwesomeStrategy --strategy-path /some/directory
``` ```

View File

@ -227,7 +227,7 @@ Freqtrade can also be installed using Anaconda (or Miniconda).
conda env create -f environment.yml conda env create -f environment.yml
``` ```
!!! Note: !!! Note
This requires the [ta-lib](#1-install-ta-lib) C-library to be installed first. This requires the [ta-lib](#1-install-ta-lib) C-library to be installed first.
## Windows ## Windows