Convert all tables in apx to markdown definitions lists and provide a nice desplay with css. #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: mkdocs-build | |
| # CI validates the source MkDocs project. Multi-version publishing/local preview | |
| # are handled separately via `mike deploy latest` and `mike serve`. | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.9 | |
| - name: Install Requirements | |
| run: | | |
| pip install --upgrade pip | |
| pip install -r requirements.txt | |
| - name: MkDocs strict build (base config used by mike) | |
| run: | | |
| python -m mkdocs build --strict |