mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-26 03:07:18 +02:00
docs: Add exception for mkdocs 📚
This commit is contained in:
parent
c206b142ef
commit
d5d37ee35c
2 changed files with 13 additions and 9 deletions
5
.github/workflows/docs.yml
vendored
5
.github/workflows/docs.yml
vendored
|
@ -14,13 +14,14 @@ jobs:
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v1
|
uses: actions/setup-python@v1
|
||||||
with:
|
with:
|
||||||
python-version: '3.8'
|
python-version: "3.8"
|
||||||
architecture: 'x64'
|
architecture: "x64"
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python3 -m pip install --upgrade pip # install pip
|
python3 -m pip install --upgrade pip # install pip
|
||||||
python3 -m pip install mkdocs # install mkdocs
|
python3 -m pip install mkdocs # install mkdocs
|
||||||
python3 -m pip install mkdocs-material # install material theme
|
python3 -m pip install mkdocs-material # install material theme
|
||||||
|
python3 -m pip install mkdocs-exclude # install mkdocs exclude
|
||||||
python3 -m pip install pygments pymdown-extensions mkdocs-material-extensions termcolor mkdocs-material mkdocs-macros-plugin
|
python3 -m pip install pygments pymdown-extensions mkdocs-material-extensions termcolor mkdocs-material mkdocs-macros-plugin
|
||||||
- name: Copy README
|
- name: Copy README
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -19,6 +19,9 @@ markdown_extensions:
|
||||||
# Plugins
|
# Plugins
|
||||||
plugins:
|
plugins:
|
||||||
- search
|
- search
|
||||||
|
- exclude:
|
||||||
|
glob:
|
||||||
|
- "*.1"
|
||||||
|
|
||||||
# Theme
|
# Theme
|
||||||
theme:
|
theme:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue