Skip to content

Commit

Permalink
Merge pull request #35 from biaslyze-dev/highlight-keywords-dashboard
Browse files Browse the repository at this point in the history
Add highlights to selected texts and other stuff
  • Loading branch information
tsterbak committed Aug 17, 2023
2 parents cb58f82 + 974ae63 commit e294917
Show file tree
Hide file tree
Showing 28 changed files with 1,271 additions and 760 deletions.
10 changes: 8 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,24 @@ install:
jupyter:
poetry run jupyter lab

doc-preview:
doc-check:
poetry run pydocstyle biaslyze/

doc-preview: doc-check
poetry run gendocs --config mkgendocs.yml
poetry run mkdocs serve --dirtyreload

doc:
doc: doc-check
poetry run gendocs --config mkgendocs.yml
poetry run mkdocs build

style:
poetry run isort .
poetry run black .

typing:
poetry run mypy --disable-error-code=import biaslyze/

lint:
poetry run ruff biaslyze/ --ignore E501

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ See more detailed examples in the [tutorial](https://biaslyze.org/tutorials/tuto

### Adding concepts and keywords

You can add concepts and new keywords for existing concepts by editing [concepts.py](https://github.com/biaslyze-dev/biaslyze/blob/main/biaslyze/concepts.py).
You can add concepts and new keywords for existing concepts by editing the concept files in [concepts](https://github.com/biaslyze-dev/biaslyze/blob/main/biaslyze/concepts/).
A tutorial on how to create custom concepts and work with them can be found [here](https://biaslyze.org/tutorials/tutorial-working-with-custom-concepts/).

## Preview/build the documentation with mkdocs
Expand Down
1 change: 1 addition & 0 deletions biaslyze/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""This module contains the main code for the biaslyze package."""
Loading

0 comments on commit e294917

Please sign in to comment.