From fc0c5e67f8bff4b4ddba0f9be441f3e823b9831e Mon Sep 17 00:00:00 2001 From: "Allen D. Householder" Date: Mon, 9 Oct 2023 11:43:08 -0400 Subject: [PATCH] add mkdocs print-site plugin (#11) puts an all-in-one page at https://certcc.github.io/Vultron/print_page/ using https://timvink.github.io/mkdocs-print-site-plugin/index.html --- mkdocs.yml | 2 ++ requirements.txt | 1 + 2 files changed, 3 insertions(+) diff --git a/mkdocs.yml b/mkdocs.yml index 24aa4664..d10e9441 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -175,6 +175,8 @@ plugins: show_root_heading: true heading_level: 2 - search + # NOTE print-site MUST be the last plugin in the list (see its docs for why) + - print-site repo_url: 'https://github.com/CERTCC/Vultron' repo_name: 'CERTCC/Vultron' markdown_extensions: diff --git a/requirements.txt b/requirements.txt index 2a81f9f2..e8071fc2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,3 +7,4 @@ mkdocstrings-python>=1.6.2 pandas scipy networkx +mkdocs-print-site-plugin