From 9852a4e6b29a8aa6373fa3d06f8b1afefa83bc0e Mon Sep 17 00:00:00 2001 From: Adrien Brignon Date: Sat, 27 May 2023 18:42:22 +0200 Subject: [PATCH] style: minor fixes --- Dockerfile | 2 +- README.md | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 655ad20..63b0703 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ ENV POETRY_VERSION=1.5.0 \ RUN python3 -m venv .venv COPY mkdocs_exporter/ mkdocs_exporter/ -COPY pyproject.toml poetry.lock Makefile README.md . +COPY pyproject.toml poetry.lock Makefile README.md ./ RUN . .venv/bin/activate \ && pip install poetry \ diff --git a/README.md b/README.md index 7c111eb..13dfb67 100644 --- a/README.md +++ b/README.md @@ -58,8 +58,9 @@ plugins: - title: Download as PDF enabled: !!python/name:mkdocs_exporter.plugins.pdf.button.enabled icon: !!python/name:mkdocs_exporter.plugins.pdf.button.icon - href: !!python/name:mkdocs_exporter.plugins.pdf.button.href - download: !!python/name:mkdocs_exporter.plugins.pdf.button.download + attributes: + href: !!python/name:mkdocs_exporter.plugins.pdf.button.href + download: !!python/name:mkdocs_exporter.plugins.pdf.button.download ``` Check out a [sample PDF generated by this plugin](examples/example.pdf) from the default page of the [Material for MkDocs](https://squidfunk.github.io/mkdocs-material) theme.