Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ RUN \
pip install --no-cache-dir --upgrade pip \
&& \
if [ "${WITH_PLUGINS}" = "true" ]; then \
pip install --no-cache-dir ".[recommended,git,imaging]"; \
pip install --no-cache-dir ".[recommended,imaging]"; \
else \
pip install --no-cache-dir .; \
fi \
Expand Down
4 changes: 0 additions & 4 deletions docs/assets/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ theme:
favicon: octicons/milestone-24
icon:
logo: logo
annotation: material/plus-circle-outline
admonition:
git:
icon: simple/git
Expand Down Expand Up @@ -186,9 +185,6 @@ markdown_extensions:
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
auto_append:
- includes/mkdocs.md
- pymdownx.superfences:
relaxed_headers: true
custom_fences:
Expand Down
6 changes: 3 additions & 3 deletions docs/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,16 +301,16 @@ source venv/bin/activate
3. Then, install all Python dependencies:

```
pip install -e ".[git, recommended, imaging]"
pip install -e ".[recommended, imaging]"
pip install nodeenv
```

4. In addition, you will need to install the `cairo` and `pngquant` libraries in your
In addition, you will need to install the `cairo` and `pngquant` libraries in your
system, as described in the [image processing] requirements guide.

[image processing]: plugins/requirements/image-processing.md

5. Finally, install the [Node.js] LTS version into the Python virtual environment
4. Finally, install the [Node.js] LTS version into the Python virtual environment
and install all Node.js dependencies:

```
Expand Down
2 changes: 1 addition & 1 deletion docs/plugins/requirements/image-processing.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ The following environments come with a preinstalled version of [Cairo Graphics]:
[installation guide]: https://www.cairographics.org/download/
[MSYS2]: https://www.msys2.org/
[UCRT64]: https://www.msys2.org/docs/environments/
[Docker image]: https://hub.docker.com/r/squidfunk/mkdocs-material/
[Docker image]: https://hub.docker.com/r/jaywhj/mkdocs-materialx
[GitHub Actions]: ../../publishing-your-site.md#github-pages

### pngquant
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ You can also embed any Markdown content within list items, such as fenced blocks

</div>

### Heading Segmentation Mode
### Heading Mode

You can also wrap headings of the same level to construct step sequences, where each heading represents one individual step.

Expand Down
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,6 @@ recommended = [
"mkdocs-glightbox>=0.5",
"mkdocs-drawio>=1.15.0"
]
git = [
"mkdocs-git-committers-plugin-2>=1.1"
]
imaging = [
"pillow>=10.2",
"cairosvg>=2.6"
Expand Down