├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── 01_suggest-project.md │ ├── 02_update-project.md │ ├── 03_update-category.md │ ├── 04_change-configuration.md │ └── 05_anything-else.md ├── PULL_REQUEST_TEMPLATE.md ├── labels.yml └── workflows │ ├── ci.yml │ └── update-best-of-list.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── check_projects.py ├── config ├── footer.md └── header.md ├── history ├── 2022-04-17_changes.md ├── 2022-04-17_projects.csv ├── 2022-04-18_changes.md ├── 2022-04-18_projects.csv ├── 2022-04-21_changes.md ├── 2022-04-21_projects.csv ├── 2022-04-28_changes.md ├── 2022-04-28_projects.csv ├── 2022-05-05_changes.md ├── 2022-05-05_projects.csv ├── 2022-05-12_changes.md ├── 2022-05-12_projects.csv ├── 2022-05-19_changes.md ├── 2022-05-19_projects.csv ├── 2022-05-26_changes.md ├── 2022-05-26_projects.csv ├── 2022-06-02_changes.md ├── 2022-06-02_projects.csv ├── 2022-06-09_changes.md ├── 2022-06-09_projects.csv ├── 2022-06-11_changes.md ├── 2022-06-11_projects.csv ├── 2022-06-12_changes.md ├── 2022-06-12_projects.csv ├── 2022-06-16_changes.md ├── 2022-06-16_projects.csv ├── 2022-06-23_changes.md ├── 2022-06-23_projects.csv ├── 2022-06-30_changes.md ├── 2022-06-30_projects.csv ├── 2022-07-07_changes.md ├── 2022-07-07_projects.csv ├── 2022-07-14_changes.md ├── 2022-07-14_projects.csv ├── 2022-07-21_changes.md ├── 2022-07-21_projects.csv ├── 2022-07-28_changes.md ├── 2022-07-28_projects.csv ├── 2022-08-04_changes.md ├── 2022-08-04_projects.csv ├── 2022-08-11_changes.md ├── 2022-08-11_projects.csv ├── 2022-08-18_changes.md ├── 2022-08-18_projects.csv ├── 2022-08-25_changes.md ├── 2022-08-25_projects.csv ├── 2022-09-01_changes.md ├── 2022-09-01_projects.csv ├── 2022-09-08_changes.md ├── 2022-09-08_projects.csv ├── 2022-09-15_changes.md ├── 2022-09-15_projects.csv ├── 2022-09-22_changes.md ├── 2022-09-22_projects.csv ├── 2022-09-29_changes.md ├── 2022-09-29_projects.csv ├── 2022-10-06_changes.md ├── 2022-10-06_projects.csv ├── 2022-10-13_changes.md ├── 2022-10-13_projects.csv ├── 2022-10-20_changes.md ├── 2022-10-20_projects.csv ├── 2022-10-27_changes.md ├── 2022-10-27_projects.csv ├── 2022-11-03_changes.md ├── 2022-11-03_projects.csv ├── 2022-11-10_changes.md ├── 2022-11-10_projects.csv ├── 2022-11-17_changes.md ├── 2022-11-17_projects.csv ├── 2022-11-24_changes.md ├── 2022-11-24_projects.csv ├── 2022-12-01_changes.md ├── 2022-12-01_projects.csv ├── 2022-12-08_changes.md ├── 2022-12-08_projects.csv ├── 2022-12-15_changes.md ├── 2022-12-15_projects.csv ├── 2022-12-22_changes.md ├── 2022-12-22_projects.csv ├── 2022-12-30_changes.md ├── 2022-12-30_projects.csv ├── 2023-01-05_changes.md ├── 2023-01-05_projects.csv ├── 2023-01-12_changes.md ├── 2023-01-12_projects.csv ├── 2023-01-19_changes.md ├── 2023-01-19_projects.csv ├── 2023-01-26_changes.md ├── 2023-01-26_projects.csv ├── 2023-02-02_changes.md ├── 2023-02-02_projects.csv ├── 2023-02-09_changes.md ├── 2023-02-09_projects.csv ├── 2023-02-16_changes.md ├── 2023-02-16_projects.csv ├── 2023-02-23_changes.md ├── 2023-02-23_projects.csv ├── 2023-03-02_changes.md ├── 2023-03-02_projects.csv ├── 2023-03-09_changes.md ├── 2023-03-09_projects.csv ├── 2023-03-16_changes.md ├── 2023-03-16_projects.csv ├── 2023-03-23_changes.md ├── 2023-03-23_projects.csv ├── 2023-03-30_changes.md ├── 2023-03-30_projects.csv ├── 2023-04-06_changes.md ├── 2023-04-06_projects.csv ├── 2023-04-13_changes.md ├── 2023-04-13_projects.csv ├── 2023-04-20_changes.md ├── 2023-04-20_projects.csv ├── 2023-04-27_changes.md ├── 2023-04-27_projects.csv ├── 2023-05-04_changes.md ├── 2023-05-04_projects.csv ├── 2023-05-11_changes.md ├── 2023-05-11_projects.csv ├── 2023-05-18_changes.md ├── 2023-05-18_projects.csv ├── 2023-05-25_changes.md ├── 2023-05-25_projects.csv ├── 2023-06-01_changes.md ├── 2023-06-01_projects.csv ├── 2023-06-04_changes.md ├── 2023-06-04_projects.csv ├── 2023-06-08_changes.md ├── 2023-06-08_projects.csv ├── 2023-06-15_changes.md ├── 2023-06-15_projects.csv ├── 2023-06-22_changes.md ├── 2023-06-22_projects.csv ├── 2023-06-29_changes.md ├── 2023-06-29_projects.csv ├── 2023-07-06_changes.md ├── 2023-07-06_projects.csv ├── 2023-07-13_changes.md ├── 2023-07-13_projects.csv ├── 2023-07-20_changes.md ├── 2023-07-20_projects.csv ├── 2023-07-27_changes.md ├── 2023-07-27_projects.csv ├── 2023-08-03_changes.md ├── 2023-08-03_projects.csv ├── 2023-08-10_changes.md ├── 2023-08-10_projects.csv ├── 2023-08-17_changes.md ├── 2023-08-17_projects.csv ├── 2023-08-24_changes.md ├── 2023-08-24_projects.csv ├── 2023-08-31_changes.md ├── 2023-08-31_projects.csv ├── 2023-09-07_changes.md ├── 2023-09-07_projects.csv ├── 2023-09-14_changes.md ├── 2023-09-14_projects.csv ├── 2023-09-21_changes.md ├── 2023-09-21_projects.csv ├── 2023-09-28_changes.md ├── 2023-09-28_projects.csv ├── 2023-09-30_changes.md ├── 2023-09-30_projects.csv ├── 2023-10-05_changes.md ├── 2023-10-05_projects.csv ├── 2023-10-12_changes.md ├── 2023-10-12_projects.csv ├── 2023-10-19_changes.md ├── 2023-10-19_projects.csv ├── 2023-10-26_changes.md ├── 2023-10-26_projects.csv ├── 2023-11-02_changes.md ├── 2023-11-02_projects.csv ├── 2023-11-09_changes.md ├── 2023-11-09_projects.csv ├── 2023-11-16_changes.md ├── 2023-11-16_projects.csv ├── 2023-11-23_changes.md ├── 2023-11-23_projects.csv ├── 2023-11-30_changes.md ├── 2023-11-30_projects.csv ├── 2023-12-07_changes.md ├── 2023-12-07_projects.csv ├── 2023-12-14_changes.md ├── 2023-12-14_projects.csv ├── 2023-12-21_changes.md ├── 2023-12-21_projects.csv ├── 2023-12-28_changes.md ├── 2023-12-28_projects.csv ├── 2024-01-04_changes.md ├── 2024-01-04_projects.csv ├── 2024-01-11_changes.md ├── 2024-01-11_projects.csv ├── 2024-01-18_changes.md ├── 2024-01-18_projects.csv ├── 2024-01-25_changes.md ├── 2024-01-25_projects.csv ├── 2024-02-01_changes.md ├── 2024-02-01_projects.csv ├── 2024-02-08_changes.md ├── 2024-02-08_projects.csv ├── 2024-02-15_changes.md ├── 2024-02-15_projects.csv ├── 2024-02-22_changes.md ├── 2024-02-22_projects.csv ├── 2024-02-29_changes.md ├── 2024-02-29_projects.csv ├── 2024-03-07_changes.md ├── 2024-03-07_projects.csv ├── 2024-03-14_changes.md ├── 2024-03-14_projects.csv ├── 2024-03-21_changes.md ├── 2024-03-21_projects.csv ├── 2024-03-28_changes.md ├── 2024-03-28_projects.csv ├── 2024-04-04_changes.md ├── 2024-04-04_projects.csv ├── 2024-04-11_changes.md ├── 2024-04-11_projects.csv ├── 2024-04-18_changes.md ├── 2024-04-18_projects.csv ├── 2024-04-19_changes.md ├── 2024-04-19_projects.csv ├── 2024-04-25_changes.md ├── 2024-04-25_projects.csv ├── 2024-05-02_changes.md ├── 2024-05-02_projects.csv ├── 2024-05-09_changes.md ├── 2024-05-09_projects.csv ├── 2024-05-16_changes.md ├── 2024-05-16_projects.csv ├── 2024-05-23_changes.md ├── 2024-05-23_projects.csv ├── 2024-05-25_changes.md ├── 2024-05-25_projects.csv ├── 2024-05-30_changes.md ├── 2024-05-30_projects.csv ├── 2024-06-06_changes.md ├── 2024-06-06_projects.csv ├── 2024-07-01_changes.md ├── 2024-07-01_projects.csv ├── 2024-07-04_changes.md ├── 2024-07-04_projects.csv ├── 2024-07-11_changes.md ├── 2024-07-11_projects.csv ├── 2024-07-18_changes.md ├── 2024-07-18_projects.csv ├── 2024-07-25_changes.md ├── 2024-07-25_projects.csv ├── 2024-08-01_changes.md ├── 2024-08-01_projects.csv ├── 2024-08-08_changes.md ├── 2024-08-08_projects.csv ├── 2024-08-15_changes.md ├── 2024-08-15_projects.csv ├── 2024-08-22_changes.md ├── 2024-08-22_projects.csv ├── 2024-08-29_changes.md ├── 2024-08-29_projects.csv ├── 2024-09-05_changes.md ├── 2024-09-05_projects.csv ├── 2024-09-12_changes.md ├── 2024-09-12_projects.csv ├── 2024-09-19_changes.md ├── 2024-09-19_projects.csv ├── 2024-09-26_changes.md ├── 2024-09-26_projects.csv ├── 2024-10-03_changes.md ├── 2024-10-03_projects.csv ├── 2024-10-10_changes.md ├── 2024-10-10_projects.csv ├── 2024-10-17_changes.md ├── 2024-10-17_projects.csv ├── 2024-10-24_changes.md ├── 2024-10-24_projects.csv ├── 2024-10-31_changes.md ├── 2024-10-31_projects.csv ├── 2024-11-03_changes.md ├── 2024-11-03_projects.csv ├── 2024-11-07_changes.md ├── 2024-11-07_projects.csv ├── 2024-11-14_changes.md ├── 2024-11-14_projects.csv ├── 2024-11-21_changes.md ├── 2024-11-21_projects.csv ├── 2024-11-28_changes.md ├── 2024-11-28_projects.csv ├── 2024-12-05_changes.md ├── 2024-12-05_projects.csv ├── 2024-12-12_changes.md ├── 2024-12-12_projects.csv ├── 2024-12-19_changes.md ├── 2024-12-19_projects.csv ├── 2024-12-26_changes.md ├── 2024-12-26_projects.csv ├── 2025-01-02_changes.md ├── 2025-01-02_projects.csv ├── 2025-01-09_changes.md ├── 2025-01-09_projects.csv ├── 2025-01-14_changes.md ├── 2025-01-14_projects.csv ├── 2025-01-16_changes.md ├── 2025-01-16_projects.csv ├── 2025-01-23_changes.md ├── 2025-01-23_projects.csv ├── 2025-01-30_changes.md ├── 2025-01-30_projects.csv ├── 2025-01-31_changes.md ├── 2025-01-31_projects.csv ├── 2025-02-06_changes.md ├── 2025-02-06_projects.csv ├── 2025-02-13_changes.md ├── 2025-02-13_projects.csv ├── 2025-02-20_changes.md ├── 2025-02-20_projects.csv ├── 2025-02-27_changes.md ├── 2025-02-27_projects.csv ├── 2025-03-06_changes.md ├── 2025-03-06_projects.csv ├── 2025-03-13_changes.md ├── 2025-03-13_projects.csv ├── 2025-03-20_changes.md ├── 2025-03-20_projects.csv ├── 2025-03-27_changes.md ├── 2025-03-27_projects.csv ├── 2025-04-03_changes.md ├── 2025-04-03_projects.csv ├── 2025-04-10_changes.md ├── 2025-04-10_projects.csv ├── 2025-04-17_changes.md ├── 2025-04-17_projects.csv ├── 2025-04-24_changes.md ├── 2025-04-24_projects.csv ├── 2025-05-01_changes.md ├── 2025-05-01_projects.csv ├── 2025-05-08_changes.md ├── 2025-05-08_projects.csv ├── 2025-05-15_changes.md ├── 2025-05-15_projects.csv ├── 2025-05-22_changes.md ├── 2025-05-22_projects.csv ├── 2025-05-29_changes.md ├── 2025-05-29_projects.csv ├── 2025-06-05_changes.md └── 2025-06-05_projects.csv ├── latest-changes.md └── projects.yaml /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at team@mltooling.org. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01_suggest-project.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "📦 Suggest a project" 3 | about: "Do you like to suggest a project that hasn't been added to this best-of list yet?" 4 | title: 'Add project: ' 5 | labels: 'add-project' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 13 | 14 | **Project details:** 15 | 16 | 17 | - Project Name: 18 | - Github URL: 19 | - Category: 20 | - License: 21 | - Package Managers: 22 | 23 | **Additional context:** 24 | 25 | 26 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_update-project.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "✏️ Update a project" 3 | about: Do you have changes for a project, e.g. missing package manager, wrong license or category? 4 | title: 'Update project: ' 5 | labels: 'update-project' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Update details:** 11 | 12 | 15 | 16 | - Project Name: 17 | 18 | 19 | 20 | **Additional context:** 21 | 22 | 23 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_update-category.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "🏷 Add or update a category" 3 | about: Do you like to suggest a new project category or update an existing one? 4 | title: '' 5 | labels: 'category' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 13 | 14 | - [ ] Add category 15 | - [ ] Update category: 16 | 17 | **Category details:** 18 | 19 | 22 | 23 | - Category Title: 24 | - Category Subtitle: 25 | 26 | **Additional context:** 27 | 28 | 29 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04_change-configuration.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "⚙️ Change configuration" 3 | about: Do you have a suggestion for changing the configuration, e.g. allow additional licenses or adjust minimal stars? 4 | title: '' 5 | labels: 'configuration' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Configuration Change:** 11 | 12 | 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/05_anything-else.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "\U0001F4AC Anything else?" 3 | about: For questions or suggestions regarding the metadata collection or markdown generation, please refer to the best-of-lists/best-of-generator repository. 4 | title: '' 5 | labels: 'question' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 13 | 14 | **Describe the issue:** 15 | 16 | 17 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | **What kind of change does this PR introduce?** 2 | 3 | 4 | - [ ] Add a project 5 | - [ ] Update a project 6 | - [ ] Remove a project 7 | - [ ] Add or update a category 8 | - [ ] Change configuration 9 | - [ ] Documentation 10 | - [ ] Other, please describe: 11 | 12 | **Description:** 13 | 14 | 15 | **Checklist:** 16 | 18 | 19 | - [ ] I have read the [CONTRIBUTING](https://github.com/best-of-lists/best-of/blob/main/CONTRIBUTING.md) guidelines. 20 | - [ ] I have not modified the `README.md` file. Projects are only supposed to be added or updated within the `projects.yaml` file since the `README.md` file is automatically generated. 21 | -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- 1 | - name: add-project 2 | color: a2eeef 3 | description: "Add new project to best-of list" 4 | - name: update-project 5 | color: a2eeef 6 | description: "Update a project on the best-of list" 7 | - name: category 8 | color: a2eeef 9 | description: "Add or update a category to the best-of list" 10 | - name: configuration 11 | color: a2eeef 12 | description: "Issue refers to the best-of list configuration" 13 | - name: generation 14 | color: a2eeef 15 | description: "Issue refers to the best-of markdown generation" 16 | - name: collection 17 | color: a2eeef 18 | description: "Issue refers to the project metadata collection" 19 | - name: question 20 | color: a2eeef 21 | description: "Further information is requested" 22 | - name: documentation 23 | color: a2eeef 24 | description: "Changes to documentation" 25 | - name: bug 26 | color: d73a4a 27 | description: "Something isn't working" 28 | - name: "good first issue" 29 | color: 98FF98 30 | description: "Good for newcomers" 31 | - name: "help wanted" 32 | color: 98FF98 33 | description: "Extra attention is needed" 34 | - name: invalid 35 | color: cfd3d7 36 | description: "This doesn't seem right" 37 | - name: duplicate 38 | color: cfd3d7 39 | description: "This issue or pull request already exists" 40 | - name: "further input needed" 41 | color: cfd3d7 42 | description: "Not enough detail is provided by the creator" 43 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | on: 3 | push: 4 | pull_request: 5 | schedule: 6 | - cron: '0 6 * * 6' 7 | jobs: 8 | CI: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - name: Download source 12 | uses: actions/checkout@v3 13 | - name: Install Python 14 | uses: actions/setup-python@v4 15 | with: 16 | python-version: '3.11' 17 | cache: 'pip' 18 | cache-dependency-path: 'projects.yaml' 19 | - name: Install dependencies 20 | run: pip install -U pip wheel pyyaml 21 | - name: Check projects 22 | run: python check_projects.py 23 | -------------------------------------------------------------------------------- /.github/workflows/update-best-of-list.yml: -------------------------------------------------------------------------------- 1 | # Based on https://github.com/best-of-lists/best-of-update-action/blob/v0.8.5/workflows/update-best-of-list.yml 2 | name: update-best-of-list 3 | 4 | on: 5 | workflow_dispatch: 6 | inputs: 7 | version: 8 | description: "Version to use for this update" 9 | required: false 10 | schedule: 11 | - cron: "0 18 * * 4" # Every thursday at 6pm 12 | 13 | env: 14 | BRANCH_PREFIX: "update/" 15 | DEFAULT_BRANCH: "main" 16 | 17 | jobs: 18 | update-best-of-list: 19 | runs-on: ubuntu-latest 20 | steps: 21 | - if: ${{ github.event.inputs != null && github.event.inputs.version != null }} 22 | name: set-version-from-input 23 | run: echo "VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV 24 | - if: ${{ ! (env.VERSION != null && env.VERSION != '') }} 25 | name: set-version-via-date 26 | run: echo "VERSION=$(date '+%Y.%m.%d')" >> $GITHUB_ENV 27 | - uses: actions/checkout@v4 28 | - name: check-version-tag 29 | shell: bash 30 | run: | 31 | git fetch --tags --force 32 | git show-ref --tags --verify --quiet -- "refs/tags/${{ env.VERSION }}" && echo "VERSION=$(date '+%Y.%m.%d-%H.%M')" >> $GITHUB_ENV || exit 0 33 | - name: create-update-branch 34 | uses: peterjgrainger/action-create-branch@v3.0.0 35 | env: 36 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 37 | with: 38 | branch: "${{ env.BRANCH_PREFIX }}${{ env.VERSION }}" 39 | - uses: actions/checkout@v3 40 | with: 41 | fetch-depth: 0 42 | ref: ${{ env.BRANCH_PREFIX }}${{ env.VERSION }} 43 | token: ${{ secrets.GITHUB_TOKEN }} 44 | env: 45 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 46 | - name: install best-of-generator 47 | run: pip install git+https://github.com/mkdocs/best-of-generator 48 | - name: update-best-of-list 49 | run: best-of generate projects.yaml --github-key=${{ secrets.GITHUB_TOKEN }} --libraries-key=${{ secrets.LIBRARIES_KEY }} 50 | - name: push-update 51 | uses: stefanzweifel/git-auto-commit-action@v5 52 | with: 53 | branch: ${{ env.BRANCH_PREFIX }}${{ env.VERSION }} 54 | commit_user_name: best-of update 55 | commit_user_email: actions@github.com 56 | commit_message: Update best-of list for version ${{ env.VERSION }} 57 | tagging_message: ${{ env.VERSION }} 58 | skip_dirty_check: true 59 | commit_options: "--allow-empty" 60 | - name: create-pull-request 61 | shell: bash 62 | run: | 63 | # Stops script execution if a command has an error 64 | set -e 65 | curl -fsSL https://github.com/github/hub/raw/master/script/get | bash -s 2.14.2 66 | bin/hub pull-request -b ${{ env.DEFAULT_BRANCH }} -h ${{ env.BRANCH_PREFIX }}${{ env.VERSION }} --no-edit -m "Best-of update: ${{ env.VERSION }}" -m "To finish this update: Select Merge pull request below and Confirm merge. Also, make sure to publish the created draft release in the [releases section](../releases) as well." || true 67 | rm bin/hub 68 | env: 69 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 70 | # - name: create-release 71 | # uses: softprops/action-gh-release@v2 72 | # env: 73 | # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 74 | # with: 75 | # tag_name: ${{ env.VERSION }} 76 | # name: "Update: ${{ env.VERSION }}" 77 | # body_path: "latest-changes.md" 78 | # draft: true 79 | # prerelease: false 80 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IntelliJ 2 | target/ 3 | .idea/ 4 | *.iml 5 | 6 | # Sublime 7 | *.sublime-workspace 8 | 9 | # Eclipse 10 | .settings 11 | 12 | # VS Code 13 | .project 14 | .classpath 15 | .vscode/* 16 | # Ignore all local history of files 17 | **/.history 18 | 19 | # Java 20 | *.class 21 | target/ 22 | 23 | # C 24 | *.so 25 | 26 | # Python 27 | *.pyc 28 | *.egg-info 29 | __pycache__ 30 | .ipynb_checkpoints 31 | .Python 32 | dist/ 33 | .python-version 34 | .installed.cfg 35 | *.egg 36 | reqlib-metadata 37 | .mypy_cache/ 38 | .venv 39 | venv/ 40 | build/ 41 | 42 | # Byte-compiled / optimized / DLL files 43 | *.pyc 44 | __pycache__/ 45 | *.py[cod] 46 | *$py.class 47 | 48 | # Unit test / coverage reports 49 | htmlcov/ 50 | .tox/ 51 | .nox/ 52 | .coverage 53 | .coverage.* 54 | .cache 55 | nosetests.xml 56 | coverage.xml 57 | *,cover 58 | .hypothesis/ 59 | .pytest_cache/ 60 | 61 | # NPM / Node / JavaScript 62 | .npm 63 | node_modules/ 64 | jspm_packages/ 65 | 66 | # Runtime data 67 | pids 68 | *.pid 69 | *.seed 70 | *.pid.lock 71 | 72 | # Logs 73 | logs 74 | *.log 75 | npm-debug.log* 76 | yarn-debug.log* 77 | yarn-error.log* 78 | lerna-debug.log* 79 | 80 | # vim temporary files 81 | *~ 82 | .*.sw? 83 | 84 | # Other Artifacts 85 | hs_err_pid* 86 | *.log 87 | *.swp 88 | *.swo 89 | temp/* 90 | .DS_Store 91 | 92 | -------------------------------------------------------------------------------- /config/footer.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | 4 | ## Related Resources 5 | 6 | - [**Best-of lists**](https://best-of.org): Discover other best-of lists with awesome open-source projects on all kinds of topics. 7 | 8 | ## Contribution 9 | 10 | Contributions are encouraged and always welcome! If you like to add or update projects, choose one of the following ways: 11 | 12 | - Open an issue by selecting one of the provided categories from the [issue page](https://github.com/mkdocs/catalog/issues/new/choose) and fill in the requested information. 13 | - Modify the [projects.yaml](https://github.com/mkdocs/catalog/blob/main/projects.yaml) with your additions or changes, and submit a pull request. This can also be done directly via the [Github UI](https://github.com/mkdocs/catalog/edit/main/projects.yaml). 14 | 15 | If you like to contribute to or share suggestions regarding the project metadata collection or markdown generation, please refer to the [best-of-generator](https://github.com/best-of-lists/best-of-generator) repository. If you like to create your own best-of list, we recommend to follow [this guide](https://github.com/best-of-lists/best-of/blob/main/create-best-of-list.md). 16 | 17 | For more information on how to add or update projects, please read the [contribution guidelines](https://github.com/mkdocs/catalog/blob/main/CONTRIBUTING.md). By participating in this project, you agree to abide by its [Code of Conduct](https://github.com/mkdocs/catalog/blob/main/.github/CODE_OF_CONDUCT.md). 18 | 19 | ## License 20 | 21 | [![CC0](https://mirrors.creativecommons.org/presskit/buttons/88x31/svg/by-sa.svg)](https://creativecommons.org/licenses/by-sa/4.0/) 22 | -------------------------------------------------------------------------------- /config/header.md: -------------------------------------------------------------------------------- 1 | 2 |

3 | catalog 4 |
5 |

6 | 7 |

8 | :trophy: :books: A list of awesome MkDocs projects and plugins. 9 |

10 | 11 |

12 | 13 | 14 | 15 | 16 |

17 | 18 | This list contains {project_count} awesome open-source projects grouped into {category_count} categories. All projects are ranked by a project-quality score, which is calculated based on various metrics automatically collected from GitHub and different package managers. If you want to add or update projects, feel free to open an [issue](https://github.com/mkdocs/catalog/issues/new/choose), submit a [pull request](https://github.com/mkdocs/catalog/pulls), or directly edit the [projects.yaml](https://github.com/mkdocs/catalog/edit/main/projects.yaml). Contributions are very welcome! 19 | 20 | > 🧙‍♂️ Discover other [best-of lists](https://best-of.org) or [create your own](https://github.com/best-of-lists/best-of/blob/main/create-best-of-list.md). 21 | -------------------------------------------------------------------------------- /history/2022-04-17_changes.md: -------------------------------------------------------------------------------- 1 | Nothing changed from last update. -------------------------------------------------------------------------------- /history/2022-04-18_changes.md: -------------------------------------------------------------------------------- 1 | ## ➕ Added Projects 2 | 3 | _Projects that were recently added to this best-of list._ 4 | 5 | - PyMdown Extensions (🥇25 · ⭐ 590 · ➕) - Extensions for Python Markdown. ❗Unlicensed 6 | - Mdx Truly Sane Lists (🥇12 · ⭐ 40 · 💤) - Extension for Python-Markdown that makes lists truly sane. Custom indents for nested lists and fix for messy.. MIT 7 | - Math extension (🥈11 · ⭐ 97 · 💤) - Math extension for Python-Markdown. ❗Unlicensed 8 | - markdown-callouts (🥈9 · ⭐ 6 · ➕) - Markdown extension: a classier syntax for admonitions. MIT 9 | - Mdx Include (🥈7 · ⭐ 38 · 💤) - Python Markdown extension to include local or remote files. ❗Unlicensed 10 | - Wikilink Plus (🥉6 · ⭐ 12 · ➕) - A wikilink extension for Python Markdown. ❗Unlicensed 11 | - Tweetable quotes (🥉6 · ⭐ 12 · 💤) - Python-Markdown extension to embed tweetable quotes into your blog posts. MIT 12 | - markdown-exec (🥉6 · 🐣) - Utilities to execute code blocks in Markdown files. ISC 13 | - markdown-del-ins (🥉4 · ⭐ 8 · 💤) - Markdown extension to support the del and ins tags. ❗Unlicensed 14 | - markdown-figcap (🥉4 · ⭐ 2 · 💤) - Extension for Python-Markdown to handle figure and figcaption. BSD-3 15 | - mkpatcher (🥉3 · ⭐ 2 · 💤) - Python-Markdown extension allowing arbitrary scripts to modify MkDocs input files. ❗Unlicensed 16 | 17 | -------------------------------------------------------------------------------- /history/2022-06-09_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - PyMdown Extensions (🥇25 · ⭐ 600 · 📈) - Extensions for Python Markdown. ❗Unlicensed 6 | - mkdocs-with-pdf (🥇22 · ⭐ 150 · 📈) - Generate a single PDF file from MkDocs repository. MIT 7 | - awesome-pages (🥇19 · ⭐ 240 · 📈) - An MkDocs plugin that simplifies configuring page titles and their order. MIT 8 | - git-revision-date (🥈19 · ⭐ 43 · 📈) - MkDocs plugin for setting revision date from git per markdown file. MIT 9 | - git-committers-2 (🥉10 · ⭐ 4 · 📈) - An MkDocs plugin to create a list of contributors on the page. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - MkRefs (🥈8 · ⭐ 16 · 📉) - MkDocs plugin to generate semantic reference Markdown pages from a knowledge graph. MIT 16 | - MkDocsOAD (🥉8 · ⭐ 14 · 🐣) - Plugin for MkDocs to generate human readable documentation from OpenAPI Documentation Version 3 (also known as Swagger.. MIT 17 | - CustomMill (🥈8 · ⭐ 6 · 📉) - Outstanding mkdocs theme with a focus on navigation, customization and usability. ❗Unlicensed 18 | - Nature (🥉5 · ⭐ 3 · 💤) - A MkDocs theme. ❗Unlicensed 19 | - select-files (🥉5 · 💤) - Filter pages for assignments. Apache-2 20 | 21 | -------------------------------------------------------------------------------- /history/2022-06-11_changes.md: -------------------------------------------------------------------------------- 1 | Nothing changed from last update. -------------------------------------------------------------------------------- /history/2022-06-12_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - MkDocs GLightbox (🥉9 · 📈) - A MkDocs plugin supports image lightbox (zoom effect) with GLightbox. MIT 6 | - multiple (🥉4 · ⭐ 1 · 💤) - Allows to merge mkdocs documentations dynamically. ❗️GPL-3.0 7 | - sequence-js (🥉3 · ⭐ 4 · 💤) - MkDocs plugin to render sequence.js blocks. MIT 8 | 9 | ## 📉 Trending Down 10 | 11 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 12 | 13 | - git-authors (🥈20 · ⭐ 21 · 📉) - MkDocs plugin to display git authors of a page. MIT 14 | - awesome-pages (🥇18 · ⭐ 240 · 📉) - An MkDocs plugin that simplifies configuring page titles and their order. MIT 15 | - static-i18n (🥇17 · ⭐ 72 · 📉) - MkDocs i18n plugin using static translation markdown files. MIT 16 | - mkdocs-jupyter (🥈15 · ⭐ 130 · 📉) - Use Jupyter Notebook in mkdocs. Apache-2 17 | - mkdocs-gallery (🥈13 · ⭐ 8 · 📉) - Same features as sphinx-gallery (https://sphinx-gallery.github.io/) but on mkdocs (https://www.mkdocs.org/) (no sphinx.. BSD-3 18 | 19 | ## ➕ Added Projects 20 | 21 | _Projects that were recently added to this best-of list._ 22 | 23 | - MkDocs Swagger UI Tag (🥉2 · ➕) - A MkDocs plugin supports for add Swagger UI in page. ❗Unlicensed 24 | 25 | -------------------------------------------------------------------------------- /history/2022-06-16_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mknotebooks (🥇24 · ⭐ 100 · 📈) - A plugin for mkdocs to help you include Jupyter notebooks in your projects. MIT 6 | - git-revision-date-localized (🥇24 · ⭐ 69 · 📈) - MkDocs plugin to add a last updated date to your site pages. MIT 7 | - encryptcontent (🥈15 · ⭐ 43 · 📈) - A MkDocs plugin that encrypt/decrypt markdown content with AES. MIT 8 | - MkDocs Swagger UI Tag (🥉7 · 📈) - A MkDocs plugin supports for add Swagger UI in page. MIT 9 | - mkdocs-add-teaser (🥉6 · ⭐ 1 · 📈) - An MkDocs plugin to add a CSS class to the first paragraph after the first heading 1 in all pages of your project. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mkdocs-with-pdf (🥇21 · ⭐ 150 · 📉) - Generate a single PDF file from MkDocs repository. MIT 16 | - monorepo (🥇20 · ⭐ 190 · 📉) - Build multiple documentation folders in a single Mkdocs. Designed for large codebases. Apache-2 17 | - mkdocs-simple-hooks (🥇18 · ⭐ 38 · 📉) - Define your own hooks for mkdocs, without having to create a new package. MIT 18 | - mktestdocs (🥇16 · ⭐ 53 · 📉) - Run pytest against markdown files/docstrings. Apache-2 19 | - docutools (🥉8 · ⭐ 13 · 📉) - Dev Centric Tools for Mkdocs Based Documentation. BSD-2 20 | 21 | -------------------------------------------------------------------------------- /history/2022-06-23_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mkdocs-with-pdf (🥇22 · ⭐ 150 · 📈) - Generate a single PDF file from MkDocs repository. MIT 6 | - encryptcontent (🥇18 · ⭐ 44 · 📈) - A MkDocs plugin that encrypt/decrypt markdown content with AES. MIT 7 | - section-index (🥈15 · ⭐ 37 · 📈) - MkDocs plugin to allow clickable sections that lead to an index page. MIT 8 | - MkDocs Swagger UI Tag (🥈9 · 📈) - A MkDocs plugin supports for add Swagger UI in page. MIT 9 | - Zettelkasten (🥉7 · 📈) - This is a Zettelkasten theme and plugin for MkDocs. It renders the MkDocs pages as cards (zettels). MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - PyMdown Extensions (🥇24 · ⭐ 600 · 📉) - Extensions for Python Markdown. ❗Unlicensed 16 | - MkApi (🥇17 · ⭐ 68 · 💤) - A documentation generation tool for MkDocs. MIT 17 | - MkDocs Video (🥈14 · ⭐ 18 · 📉) - MkDocs Video plugin. MIT 18 | - mkdocs-gallery (🥈13 · ⭐ 9 · 📉) - Same features as sphinx-gallery (https://sphinx-gallery.github.io/) but on mkdocs (https://www.mkdocs.org/) (no sphinx.. BSD-3 19 | - mkdocs-mdpo (🥉11 · ⭐ 3 · 📉) - Mkdocs translation plugin using PO files. BSD-3 20 | 21 | -------------------------------------------------------------------------------- /history/2022-08-04_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - monorepo (🥇21 · ⭐ 200 · 📈) - Build multiple documentation folders in a single Mkdocs. Designed for large codebases. Apache-2 6 | - Mdx Truly Sane Lists (🥈17 · ⭐ 44 · 📈) - Extension for Python-Markdown that makes lists truly sane. Custom indents for nested lists and fix for messy.. MIT 7 | - markdownmermaid (🥈13 · ⭐ 25 · 💤) - A MkDocs plugin that support mermaid graph in markdown file. MIT 8 | - MkDocs GLightbox (🥈13 · ⭐ 7 · 🐣) - A MkDocs plugin supports image lightbox (zoom effect) with GLightbox. MIT 9 | - Ivory (🥈11 · ⭐ 9 · 💤) - Ivory theme for MkDocs. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mkdocs-redirects (🥇22 · ⭐ 72 · 📉) - Open source plugin for Mkdocs page redirects. MIT 16 | - git-authors (🥈19 · ⭐ 21 · 📉) - MkDocs plugin to display git authors of a page. MIT 17 | - static-i18n (🥇16 · ⭐ 81 · 📉) - MkDocs i18n plugin using static translation markdown files. MIT 18 | - mktestdocs (🥇15 · ⭐ 56 · 📉) - Run pytest against markdown files/docstrings. Apache-2 19 | - drawio-exporter (🥈14 · ⭐ 40 · 📉) - Exports your Draw.io diagrams at build time for easier embedding into your documentation. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2022-08-11_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mkdocs-redirects (🥇23 · ⭐ 73 · 📈) - Open source plugin for Mkdocs page redirects. MIT 6 | - simple (🥈18 · ⭐ 20 · 📈) - Build documentation files inside your code into a MkDocs site. Apache-2 7 | - static-i18n (🥇17 · ⭐ 83 · 📈) - MkDocs i18n plugin using static translation markdown files. MIT 8 | - autorefs (🥈13 · ⭐ 11 · 📈) - Automatically link across pages in MkDocs. ISC 9 | - mkdocs-code-validator (🥉6 · ⭐ 1 · 📈) - Checks Markdown code blocks in a MkDocs site against user-defined actions. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mkdocs-mdpo (🥉11 · ⭐ 3 · 📉) - Mkdocs translation plugin using PO files. BSD-3 16 | - mkdocs-embed-external-markdown (🥉6 · ⭐ 1 · 🐣) - MkDocs Embed External Markdown plugin that allow to inject section or all full markdown content from a given url. The.. MIT 17 | 18 | -------------------------------------------------------------------------------- /history/2022-08-25_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mkdocs-redirects (🥇24 · ⭐ 73 · 📈) - Open source plugin for Mkdocs page redirects. MIT 6 | - mkdocs-jupyter (🥈17 · ⭐ 150 · 📈) - Use Jupyter Notebook in mkdocs. Apache-2 7 | - mkdocs-versioning (🥈17 · ⭐ 38 · 📈) - A tool that allows for versioning sites built with mkdocs. MIT 8 | - htmlproofer (🥇16 · ⭐ 21 · 📈) - A MkDocs plugin that validates URL in rendered html files. MIT 9 | - MkDocs Video (🥈15 · ⭐ 21 · 📈) - MkDocs Video plugin. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - print-site (🥈18 · ⭐ 44 · 📉) - MkDocs Plugin that adds an additional page that combines all pages, allowing easy exports to PDF and standalone HTML. MIT 16 | - include-markdown (🥇17 · ⭐ 30 · 📉) - Mkdocs Markdown includer plugin. Apache-2 17 | - mktestdocs (🥇14 · ⭐ 59 · 📉) - Run pytest against markdown files/docstrings. Apache-2 18 | - markdownmermaid (🥈12 · ⭐ 25 · 💤) - A MkDocs plugin that support mermaid graph in markdown file. MIT 19 | - Ivory (🥈10 · ⭐ 9 · 💤) - Ivory theme for MkDocs. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2022-09-01_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mike (🥇25 · ⭐ 240 · 📈) - Manage multiple versions of your MkDocs-powered documentation via Git. BSD-3 6 | - MkDocs GLightbox (🥈15 · ⭐ 12 · 🐣) - A MkDocs plugin supports image lightbox (zoom effect) with GLightbox. MIT 7 | - mkdocs-pandoc (🥉13 · ⭐ 110 · 💤) - [unmaintained] mkdocs - pandoc converter: use this fork https://github.com/twardoch/mkdocs-combine. Apache-2 8 | - mkdocs-coverage (🥈9 · ⭐ 5 · 📈) - MkDocs plugin to integrate your coverage HTML report into your site. ISC 9 | - SWAN (🥉7 · ⭐ 2 · 💤) - SWAN MkDocs theme. ❗️AGPL-3.0 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - git-revision-date (🥈18 · ⭐ 43 · 📉) - MkDocs plugin for setting revision date from git per markdown file. MIT 16 | - bibtex (🥇18 · ⭐ 34 · 📉) - A MkDocs plugin for citation management using bibtex. ❗️BSD-3-Clause-LBNL 17 | - rss (🥇18 · ⭐ 31 · 📉) - MkDocs plugin to generate a RSS feeds for created and updated pages, using git log and YAML frontmatter (page.meta). MIT 18 | - Cinder (🥇17 · ⭐ 160 · 💤) - A clean, responsive MkDocs theme. ❗Unlicensed 19 | - CustomMill (🥉7 · ⭐ 8 · 📉) - Outstanding mkdocs theme with a focus on navigation, customization and usability. ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2022-09-15_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - markdownextradata (🥈20 · ⭐ 55 · 📈) - A MkDocs plugin that injects the mkdocs.yml extra variables into the markdown template. MIT 6 | - include-markdown (🥇18 · ⭐ 35 · 📈) - Mkdocs Markdown includer plugin. Apache-2 7 | - mkdocs-multirepo-plugin (🥈17 · ⭐ 38 · 📈) - Build documentation in multiple repos into one site. MIT 8 | - git-committers (🥉14 · ⭐ 21 · 💤) - A mkdocs plugin for displaying the last commit and a list of a files contributors. MIT 9 | - MkDocs Swagger UI Tag (🥇14 · ⭐ 13 · 🐣) - A MkDocs plugin supports for add Swagger UI in page. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - git-revision-date-localized (🥇25 · ⭐ 79 · 📉) - MkDocs plugin to add a last updated date to your site pages. MIT 16 | - mike (🥇24 · ⭐ 240 · 📉) - Manage multiple versions of your MkDocs-powered documentation via Git. BSD-3 17 | - encryptcontent (🥇18 · ⭐ 47 · 📉) - A MkDocs plugin that encrypt/decrypt markdown content with AES. MIT 18 | - static-i18n (🥇17 · ⭐ 88 · 📉) - MkDocs i18n plugin using static translation markdown files. MIT 19 | - MkDocs Graphviz (🥉3 · 📉) - ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2022-11-03_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - Material for MkDocs (🥇42 · ⭐ 12K · 📈) - Documentation that simply works. MIT 6 | - git-authors (🥈23 · ⭐ 27 · 📈) - MkDocs plugin to display git authors of a page. MIT 7 | - Bootswatch (🥇19 · ⭐ 120 · 💤) - MkDocs Bootswatch Themes. BSD-2 8 | - encryptcontent (🥇19 · ⭐ 56 · 📈) - A MkDocs plugin that encrypt/decrypt markdown content with AES. MIT 9 | - MkDocs Backend for Foliant (🥈11 · ⭐ 3 · 📈) - MkDocs backend for Foliant. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mkdocstrings (🥇22 · ⭐ 1K · 📉) - Automatic documentation from sources, for MkDocs. ISC 16 | - mike (🥇22 · ⭐ 260 · 📉) - Manage multiple versions of your MkDocs-powered documentation via Git. BSD-3 17 | - mktestdocs (🥇13 · ⭐ 62 · 📉) - Run pytest against markdown files/docstrings. Apache-2 18 | - MkDocs Swagger UI Tag (🥇12 · ⭐ 15 · 🐣) - A MkDocs plugin supports for add Swagger UI in page. MIT 19 | - roamlinks (🥈9 · ⭐ 25 · 📉) - An MkDocs plugin that automagically generates relative links between markdown pages. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2022-11-10_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mike (🥇23 · ⭐ 260 · 📈) - Manage multiple versions of your MkDocs-powered documentation via Git. BSD-3 6 | - mkdocs-with-pdf (🥇23 · ⭐ 190 · 💤) - Generate a single PDF file from MkDocs repository. MIT 7 | - htmlproofer (🥇21 · ⭐ 24 · 📈) - A MkDocs plugin that validates URL in rendered html files. MIT 8 | - print-site (🥈20 · ⭐ 60 · 📈) - MkDocs Plugin that adds an additional page that combines all pages, allowing easy exports to PDF and standalone HTML. MIT 9 | - Zettelkasten (🥈9 · ⭐ 3 · 📈) - This is a Zettelkasten theme and plugin for MkDocs. It renders the MkDocs pages as cards (zettels). MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Bootswatch (🥇18 · ⭐ 120 · 💤) - MkDocs Bootswatch Themes. BSD-2 16 | - bibtex (🥇18 · ⭐ 36 · 📉) - A MkDocs plugin for citation management using bibtex. ❗️BSD-3-Clause-LBNL 17 | - MkApi (🥈15 · ⭐ 75 · 💤) - A documentation generation tool for MkDocs. MIT 18 | - MkRefs (🥉8 · ⭐ 20 · 💤) - MkDocs plugin to generate semantic reference Markdown pages from a knowledge graph. MIT 19 | - octadocs-adr (🥉8 · ⭐ 3 · 📉) - Make your MkDocs documentation think for you. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2022-11-17_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - rss (🥇21 · ⭐ 38 · 📈) - MkDocs plugin to generate a RSS feeds for created and updated pages, using git log and YAML frontmatter (page.meta). MIT 6 | - bibtex (🥇19 · ⭐ 36 · 📈) - A MkDocs plugin for citation management using bibtex. ❗️BSD-3-Clause-LBNL 7 | - kroki (🥈13 · ⭐ 18 · 📈) - MkDocs plugin for Kroki-Diagrams. MIT 8 | - MkDocs Merge (🥉11 · ⭐ 18 · 📈) - Merge the source of multiple MkDocs sites into a single one. MIT 9 | - Autolink References (🥈9 · ⭐ 9 · 📈) - Provides GitHub like autolink references in Mkdocs. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Bootstrap 4 (🥉7 · ⭐ 4 · 💤) - A vanilla Bootstrap 4 theme for MkDocs. MIT 16 | - Link Checker (🥉7 · ⭐ 2 · 💤) - Python asyncio + aiohttp Markdown *.md URL link checker: 10,000 files/second. MIT 17 | - Unidata (🥉7 · 💤) - Custom MkDocs Material Design Theme. MIT 18 | - Tweetable quotes (🥉4 · ⭐ 13 · 💤) - Python-Markdown extension to embed tweetable quotes into your blog posts. MIT 19 | 20 | -------------------------------------------------------------------------------- /history/2022-11-24_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - pdf-export (🥈22 · ⭐ 260 · 💤) - An MkDocs plugin to export content pages as PDF files. MIT 6 | - MkDocs GLightbox (🥇18 · ⭐ 27 · 🐣) - A MkDocs plugin supports image lightbox (zoom effect) with GLightbox. MIT 7 | - autolinks (🥈17 · ⭐ 46 · 📈) - An MkDocs plugin that automagically generates relative links between markdown pages. MIT 8 | - mkdocs_safe_text (🥈10 · ⭐ 3 · 📈) - Plugin for safe text editing with MKDocs. BSD-2 9 | - SWAN Gallery (🥈9 · 📈) - MkDocs plugin to generate a SWAN Gallery. ❗️AGPL-3.0 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mkdocstrings (🥇21 · ⭐ 1K · 📉) - Automatic documentation from sources, for MkDocs. ISC 16 | - mike (🥈19 · ⭐ 260 · 📉) - Manage multiple versions of your MkDocs-powered documentation via Git. BSD-3 17 | - Markdown-Include (🥇17 · ⭐ 86 · 📉) - Provides syntax for Python-Markdown which allows for the inclusion of the contents of other Markdown documents. ❗️GPL-3.0 18 | - pheasant (🥉11 · ⭐ 17 · 💤) - Documentation tool for Markdown conversion by Jupyter client. MIT 19 | - Termage (🥉9 · ⭐ 9 · 🐣) - Generate SVGs from any Python code, even in your documentation. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2022-12-15_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - include-markdown (🥇22 · ⭐ 43 · 📈) - Mkdocs Markdown includer plugin. Apache-2 6 | - encryptcontent (🥇20 · ⭐ 56 · 📈) - A MkDocs plugin that encrypt/decrypt markdown content with AES. MIT 7 | - section-index (🥈18 · ⭐ 45 · 📈) - MkDocs plugin to allow clickable sections that lead to an index page. MIT 8 | - mkdocs-simple-hooks (🥈18 · ⭐ 45 · 📈) - Define your own hooks for mkdocs, without having to create a new package. MIT 9 | - literate-nav (🥈17 · ⭐ 33 · 📈) - MkDocs plugin to specify the navigation in Markdown instead of YAML. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Material for MkDocs (🥇40 · ⭐ 12K · 📉) - Documentation that simply works. MIT 16 | - Zettelkasten (🥈10 · ⭐ 3 · 📉) - This is a Zettelkasten theme and plugin for MkDocs. It renders the MkDocs pages as cards (zettels). MIT 17 | - tags (🥉8 · ⭐ 40 · 💤) - Processes tags in yaml metadata. MIT 18 | - multirepo (🥉8 · ⭐ 22 · 📉) - A bit like monorepo, but keeps MkDocs projects separate. MIT 19 | - MkRefs (🥉8 · ⭐ 20 · 💤) - MkDocs plugin to generate semantic reference Markdown pages from a knowledge graph. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2023-01-12_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mkdocstrings (🥇28 · ⭐ 1.1K · 📈) - Automatic documentation from sources, for MkDocs. ISC 6 | - PyMdown Extensions (🥇25 · ⭐ 690 · 📈) - Extensions for Python Markdown. ❗Unlicensed 7 | - mkdocs-redirects (🥇23 · ⭐ 91 · 📈) - Open source plugin for Mkdocs page redirects. MIT 8 | - static-i18n (🥇21 · ⭐ 120 · 📈) - MkDocs i18n plugin using static translation markdown files. MIT 9 | - literate-nav (🥈19 · ⭐ 34 · 📈) - MkDocs plugin to specify the navigation in Markdown instead of YAML. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mermaid2 (🥈18 · ⭐ 130 · 📉) - A Mermaid graphs plugin for mkdocs. MIT 16 | - gen-files (🥈18 · ⭐ 44 · 📉) - MkDocs plugin to programmatically generate documentation pages during the build. MIT 17 | - section-index (🥈16 · ⭐ 47 · 📉) - MkDocs plugin to allow clickable sections that lead to an index page. MIT 18 | - Bootswatch (🥈13 · ⭐ 120 · 💤) - MkDocs Bootswatch Themes. BSD-2 19 | - linkpatcher-plugin (📉) - ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2023-01-26_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mkdocstrings (🥇30 · ⭐ 1.1K · 📈) - Automatic documentation from sources, for MkDocs. ISC 6 | - minify (🥇23 · ⭐ 79 · 📈) - A mkdocs plugin to minify the HTML of a page before it is written to disk. MIT 7 | - table-reader (🥇20 · ⭐ 60 · 📈) - MkDocs plugin that adds a {{ read_csv(table.csv) }} markdown tag to directly insert CSV files as a table into a page. MIT 8 | - mkdocs-multirepo-plugin (🥈19 · ⭐ 51 · 📈) - Build documentation in multiple repos into one site. MIT 9 | - MkDocs Merge (🥉13 · ⭐ 18 · 📈) - Merge the source of multiple MkDocs sites into a single one. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mkdocs-blogging-plugin (🥈17 · ⭐ 42 · 📉) - Add blogging feature to your MkDocs site. MIT 16 | - MkDocs Backend for Foliant (🥈11 · ⭐ 3 · 📉) - MkDocs backend for Foliant. MIT 17 | - KPN for MkDocs (🥈10 · ⭐ 6 · 📉) - KPN theme for MkDocs | owner=flow. MIT 18 | - docutools (🥉8 · ⭐ 15 · 📉) - Dev Centric Tools for Mkdocs Based Documentation. BSD-2 19 | - SWAN (🥉7 · ⭐ 2 · 💤) - SWAN MkDocs theme. ❗️AGPL-3.0 20 | 21 | -------------------------------------------------------------------------------- /history/2023-02-02_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - section-index (🥈19 · ⭐ 50 · 📈) - MkDocs plugin to allow clickable sections that lead to an index page. MIT 6 | - literate-nav (🥈19 · ⭐ 36 · 📈) - MkDocs plugin to specify the navigation in Markdown instead of YAML. MIT 7 | - mkpdfs (🥈18 · ⭐ 90 · 💤) - Converts your mkdocs documentation in PDF, to be shared with users. ❗️GPL-3.0 8 | - enumerate-headings (🥈15 · ⭐ 31 · 📈) - MkDocs Plugin to enumerate the headings across site pages. MIT 9 | - markdown-exec (🥈12 · ⭐ 19 · 📈) - Utilities to execute code blocks in Markdown files. ISC 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - git-authors (🥈22 · ⭐ 34 · 📉) - MkDocs plugin to display git authors of a page. MIT 16 | - pdf-export (🥈21 · ⭐ 270 · 💤) - An MkDocs plugin to export content pages as PDF files. MIT 17 | - gen-files (🥈17 · ⭐ 48 · 📉) - MkDocs plugin to programmatically generate documentation pages during the build. MIT 18 | - localsearch (🥉13 · ⭐ 27 · 📉) - A MkDocs plugin to make the native search plugin work locally (file:// protocol). MIT 19 | - Termage (🥉7 · ⭐ 10 · 📉) - Generate SVGs from any Python code, even in your documentation. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2023-02-09_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - PyMdown Extensions (🥇31 · ⭐ 710 · 📈) - Extensions for Python Markdown. ❗Unlicensed 6 | - Markdown-Include (🥈23 · ⭐ 84 · 📈) - Provides syntax for Python-Markdown which allows for the inclusion of the contents of other Markdown documents. ❗️GPL-3.0 7 | - MkDocs Video (🥈18 · ⭐ 32 · 📈) - MkDocs Video plugin. MIT 8 | - exclude-search (🥇16 · ⭐ 23 · 📈) - A mkdocs plugin that lets you exclude selected chapters from the search index. MIT 9 | - factsheet (🥉7 · ⭐ 2 · 📈) - Generate overviews from YAML descriptions, intended for micro-services and their deployments. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - git-committers (🥉14 · ⭐ 23 · 💤) - A mkdocs plugin for displaying the last commit and a list of a files contributors. MIT 16 | - multirepo (🥉8 · ⭐ 22 · 💤) - A bit like monorepo, but keeps MkDocs projects separate. MIT 17 | - Zettelkasten (🥈8 · ⭐ 3 · 📉) - This is a Zettelkasten theme and plugin for MkDocs. It renders the MkDocs pages as cards (zettels). MIT 18 | - GitBook (🥉7 · ⭐ 26 · 💤) - Default theme for GitBook for Mkdocs https://lramage.gitlab.io/mkdocs-gitbook-theme. ❗Unlicensed 19 | - docutools (🥉7 · ⭐ 15 · 📉) - Dev Centric Tools for Mkdocs Based Documentation. BSD-2 20 | 21 | -------------------------------------------------------------------------------- /history/2023-02-16_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - PyMdown Extensions (🥇32 · ⭐ 710 · 📈) - Extensions for Python Markdown. ❗Unlicensed 6 | - include-markdown (🥇25 · ⭐ 55 · 📈) - Mkdocs Markdown includer plugin. Apache-2 7 | - mkdocs-click (🥇18 · ⭐ 58 · 📈) - An MkDocs extension to generate documentation for Click command line applications. Apache-2 8 | - autorefs (🥈16 · ⭐ 16 · 📈) - Automatically link across pages in MkDocs. ISC 9 | - mkdocs-spellcheck (🥈11 · ⭐ 5 · 📈) - A spell checker plugin for MkDocs. ISC 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - minify (🥇22 · ⭐ 79 · 📉) - A mkdocs plugin to minify the HTML of a page before it is written to disk. MIT 16 | - mknotebooks (🥇21 · ⭐ 110 · 📉) - A plugin for mkdocs to help you include Jupyter notebooks in your projects. MIT 17 | - MkDocs GLightbox (🥈18 · ⭐ 41 · 📉) - A MkDocs plugin supports image lightbox (zoom effect) with GLightbox. MIT 18 | - mkdocs-pandoc (🥉13 · ⭐ 110 · 💤) - [unmaintained] mkdocs - pandoc converter: use this fork https://github.com/twardoch/mkdocs-combine. Apache-2 19 | - markdownmermaid (🥉12 · ⭐ 25 · 💤) - A MkDocs plugin that support mermaid graph in markdown file. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2023-03-02_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - minify (🥇23 · ⭐ 80 · 📈) - A mkdocs plugin to minify the HTML of a page before it is written to disk. MIT 6 | - section-index (🥇20 · ⭐ 54 · 📈) - MkDocs plugin to allow clickable sections that lead to an index page. MIT 7 | - mkdocs-blogging-plugin (🥈18 · ⭐ 53 · 📈) - Add blogging feature to your MkDocs site. MIT 8 | - codeinclude (🥉15 · ⭐ 10 · 📈) - A plugin to include code snippets into mkdocs pages. MIT 9 | - mkdocs-pandoc (🥉14 · ⭐ 110 · 💤) - [unmaintained] mkdocs - pandoc converter: use this fork https://github.com/twardoch/mkdocs-combine. Apache-2 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - git-revision-date-localized (🥇24 · ⭐ 100 · 📉) - MkDocs plugin to add a last updated date to your site pages. MIT 16 | - include-markdown (🥇24 · ⭐ 55 · 📉) - Mkdocs Markdown includer plugin. Apache-2 17 | - mkdocs-redirects (🥇21 · ⭐ 96 · 📉) - Open source plugin for Mkdocs page redirects. MIT 18 | - rss (🥇21 · ⭐ 42 · 📉) - MkDocs plugin to generate a RSS feeds for created and updated pages, using git log and YAML frontmatter (page.meta). MIT 19 | - mktheapidocs (🥉10 · ⭐ 10 · 📉) - Numpydocs - mkdocs friendly markdown. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2023-03-09_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - git-revision-date-localized (🥇26 · ⭐ 100 · 📈) - MkDocs plugin to add a last updated date to your site pages. MIT 6 | - mkdocs-jupyter (🥇22 · ⭐ 200 · 📈) - Use Jupyter Notebook in mkdocs. Apache-2 7 | - rss (🥇22 · ⭐ 43 · 📈) - MkDocs plugin to generate a RSS feeds for created and updated pages, using git log and YAML frontmatter (page.meta). MIT 8 | - mktheapidocs (🥉13 · ⭐ 10 · 📈) - Numpydocs - mkdocs friendly markdown. MIT 9 | - Link Checker (🥉8 · ⭐ 3 · 💤) - Python asyncio + aiohttp Markdown *.md URL link checker: 10,000 files/second. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - PyMdown Extensions (🥇31 · ⭐ 720 · 📉) - Extensions for Python Markdown. ❗Unlicensed 16 | - minify (🥇22 · ⭐ 80 · 📉) - A mkdocs plugin to minify the HTML of a page before it is written to disk. MIT 17 | - mknotebooks (🥈20 · ⭐ 110 · 📉) - A plugin for mkdocs to help you include Jupyter notebooks in your projects. MIT 18 | - simple (🥈20 · ⭐ 32 · 📉) - Build documentation files inside your code into a MkDocs site. Apache-2 19 | - MkDocs Swagger UI Tag (🥇15 · ⭐ 25 · 📉) - A MkDocs plugin supports for add Swagger UI in page. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2023-03-23_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - rss (🥇23 · ⭐ 45 · 📈) - MkDocs plugin to generate a RSS feeds for created and updated pages, using git log and YAML frontmatter (page.meta). MIT 6 | - static-i18n (🥇21 · ⭐ 130 · 📈) - MkDocs i18n plugin using static translation markdown files. MIT 7 | - mknotebooks (🥈21 · ⭐ 110 · 📈) - A plugin for mkdocs to help you include Jupyter notebooks in your projects. MIT 8 | - mkdocs-multirepo-plugin (🥈21 · ⭐ 61 · 📈) - Build documentation in multiple repos into one site. MIT 9 | - mkdocs-click (🥇18 · ⭐ 63 · 📈) - An MkDocs extension to generate documentation for Click command line applications. Apache-2 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - encryptcontent (🥈19 · ⭐ 65 · 📉) - A MkDocs plugin that encrypt/decrypt markdown content with AES. MIT 16 | - SWAN (🥉7 · ⭐ 2 · 📉) - SWAN MkDocs theme. ❗️AGPL-3.0 17 | - webcontext (🥉6 · 💤) - Mkdocs plugin for converting absolute paths to webcontext aware paths using the configured webcontext context. MIT 18 | - Cluster (🥉2 · ⭐ 4 · 💤) - Another bootstrap theme for MkDocs. ❗Unlicensed 19 | 20 | -------------------------------------------------------------------------------- /history/2023-04-06_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - PyMdown Extensions (🥇32 · ⭐ 730 · 📈) - Extensions for Python Markdown. ❗Unlicensed 6 | - Markdown-Include (🥇23 · ⭐ 87 · 📈) - Provides syntax for Python-Markdown which allows for the inclusion of the contents of other Markdown documents. ❗️GPL-3.0 7 | - htmlproofer (🥇21 · ⭐ 27 · 📈) - A MkDocs plugin that validates URL in rendered html files. MIT 8 | - mkdocs-blogging-plugin (🥈19 · ⭐ 57 · 📈) - Add blogging feature to your MkDocs site. MIT 9 | - mkdocs-simple-hooks (🥈19 · ⭐ 49 · 📈) - Define your own hooks for mkdocs, without having to create a new package. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - include-markdown (🥇23 · ⭐ 55 · 📉) - Mkdocs Markdown includer plugin. Apache-2 16 | - mkdocs-with-pdf (🥇22 · ⭐ 220 · 💤) - Generate a single PDF file from MkDocs repository. MIT 17 | - literate-nav (🥇21 · ⭐ 41 · 📉) - MkDocs plugin to specify the navigation in Markdown instead of YAML. MIT 18 | - KPN for MkDocs (🥈8 · ⭐ 7 · 📉) - KPN theme for MkDocs | owner=flow. MIT 19 | - octadocs-adr (🥉8 · ⭐ 3 · 📉) - Make your MkDocs documentation think for you. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2023-04-13_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - awesome-pages (🥇26 · ⭐ 310 · 📈) - An MkDocs plugin that simplifies configuring page titles and their order. MIT 6 | - htmlproofer (🥇22 · ⭐ 27 · 📈) - A MkDocs plugin that validates URL in rendered html files. MIT 7 | - encryptcontent (🥈20 · ⭐ 65 · 📈) - A MkDocs plugin that encrypt/decrypt markdown content with AES. MIT 8 | - markdown-callouts (🥈16 · ⭐ 15 · 📈) - Markdown extension: a classier syntax for admonitions. MIT 9 | - mkdocs-coverage (🥈13 · ⭐ 4 · 📈) - MkDocs plugin to integrate your coverage HTML report into your site. ISC 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - PyMdown Extensions (🥇31 · ⭐ 740 · 📉) - Extensions for Python Markdown. ❗Unlicensed 16 | - mermaid2 (🥇19 · ⭐ 140 · 📉) - A Mermaid graphs plugin for mkdocs. MIT 17 | - mkpdfs (🥈16 · ⭐ 93 · 💤) - Converts your mkdocs documentation in PDF, to be shared with users. ❗️GPL-3.0 18 | - pico-8 (🥉5 · ⭐ 1 · 💤) - A MKDocs plugin that allows to embed a Pico-8 web player in a page. MIT 19 | 20 | -------------------------------------------------------------------------------- /history/2023-05-11_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mkdocs-jupyter (🥇24 · ⭐ 230 · 📈) - Use Jupyter Notebook in mkdocs. Apache-2 6 | - mermaid2 (🥇22 · ⭐ 150 · 📈) - A Mermaid graphs plugin for mkdocs. MIT 7 | - section-index (🥇20 · ⭐ 58 · 📈) - MkDocs plugin to allow clickable sections that lead to an index page. MIT 8 | - MkDocs Swagger UI Tag (🥇17 · ⭐ 27 · 📈) - A MkDocs plugin supports for add Swagger UI in page. MIT 9 | - mkdocs-gallery (🥈16 · ⭐ 15 · 📈) - Same features as sphinx-gallery (https://sphinx-gallery.github.io/) but on mkdocs (https://www.mkdocs.org/) (no sphinx.. BSD-3 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - MkDocs Video (🥈17 · ⭐ 41 · 📉) - MkDocs Video plugin. MIT 16 | - kroki (🥈17 · ⭐ 25 · 📉) - MkDocs plugin for Kroki-Diagrams. MIT 17 | - Terminal for MkDocs (🥈13 · ⭐ 19 · 🐣) - monospace theme for MkDocs. MIT 18 | - Lantana (🥈12 · ⭐ 7 · 📉) - Lantana MKDocsHTML. MIT 19 | - plotly charts (🥉3 · ⭐ 1 · 🐣) - Mkdocs plugin to add interactive charts with Plotly.js. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2023-05-18_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - PyMdown Extensions (🥇32 · ⭐ 760 · 📈) - Extensions for Python Markdown. ❗Unlicensed 6 | - monorepo (🥇24 · ⭐ 250 · 📈) - Build multiple documentation folders in a single Mkdocs. Designed for large codebases. Apache-2 7 | - mermaid2 (🥇23 · ⭐ 150 · 📈) - A Mermaid graphs plugin for mkdocs. MIT 8 | - Markdown-Include (🥈22 · ⭐ 89 · 📈) - Provides syntax for Python-Markdown which allows for the inclusion of the contents of other Markdown documents. ❗️GPL-3.0 9 | - literate-nav (🥇22 · ⭐ 47 · 📈) - MkDocs plugin to specify the navigation in Markdown instead of YAML. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - inari (🥉6 · ⭐ 6 · 💤) - Write docstrings in markdown!. MIT 16 | - branchcustomization (🥉5 · ⭐ 2 · 💤) - Customize MkDocs options on a per-branch basis. MIT 17 | - select-files (🥉5 · 💤) - Filter pages for assignments. Apache-2 18 | - Tweetable quotes (🥉4 · ⭐ 13 · 💤) - Python-Markdown extension to embed tweetable quotes into your blog posts. MIT 19 | - octadocs-adr (📉) - ❗Unlicensed 20 | 21 | -------------------------------------------------------------------------------- /history/2023-06-01_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mkdocs-jupyter (🥇25 · ⭐ 240 · 📈) - Use Jupyter Notebook in mkdocs. Apache-2 6 | - mkdocs-redirects (🥇22 · ⭐ 100 · 📈) - Open source plugin for Mkdocs page redirects. MIT 7 | - encryptcontent (🥇21 · ⭐ 70 · 📈) - A MkDocs plugin that encrypt/decrypt markdown content with AES. MIT 8 | - table-reader (🥇20 · ⭐ 70 · 📈) - MkDocs plugin that enables a markdown tag like {{ read_csv(table.csv) }} to directly insert various table formats into.. MIT 9 | - same-dir (🥈12 · ⭐ 21 · 📈) - MkDocs plugin to allow placing mkdocs.yml in the same directory as documentation. MIT 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mike (🥇25 · ⭐ 330 · 📉) - Manage multiple versions of your MkDocs-powered documentation via Git. BSD-3 16 | - minify (🥇22 · ⭐ 90 · 📉) - A mkdocs plugin to minify the HTML of a page before it is written to disk. MIT 17 | - include-markdown (🥇22 · ⭐ 61 · 📉) - Mkdocs Markdown includer plugin. Apache-2 18 | - Cinder (🥇20 · ⭐ 180 · 💤) - A clean, responsive MkDocs theme. ❗Unlicensed 19 | - mknotebooks (🥈20 · ⭐ 110 · 📉) - A plugin for mkdocs to help you include Jupyter notebooks in your projects. MIT 20 | 21 | -------------------------------------------------------------------------------- /history/2023-06-04_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - plotly charts - 🥉4 · ⭐ 1 · 🐣 · MIT ·
Mkdocs plugin to add interactive charts with Plotly.js. 6 | 7 | -------------------------------------------------------------------------------- /history/2023-08-17_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - macros - 🥇28 · ⭐ 220 · 📈 · MIT ·
Create richer and more beautiful pages in MkDocs, by using variables and calls to macros in the markdown code. 6 | - awesome-pages - 🥇25 · ⭐ 350 · 📈 · MIT ·
An MkDocs plugin that simplifies configuring page titles and their order. 7 | - autorefs - 🥇24 · ⭐ 23 · 📈 · ISC ·
Automatically link across pages in MkDocs. 8 | - Dracula - 🥈14 · ⭐ 18 · 🐣 · MIT ·
Dark theme for Mkdocs. 9 | - MkRefs - 🥈11 · ⭐ 23 · 💤 · MIT ·
MkDocs plugin to generate semantic reference Markdown pages from a knowledge graph. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mkdocs-redirects - 🥇22 · ⭐ 120 · 📉 · MIT ·
Open source plugin for Mkdocs page redirects. 16 | - mike - 🥈19 · ⭐ 360 · 📉 · BSD-3 ·
Manage multiple versions of your MkDocs-powered documentation via Git. 17 | - drawio-exporter - 🥈16 · ⭐ 57 · 📉 · MIT ·
Exports your Draw.io diagrams at build time for easier embedding into your documentation. 18 | - pheasant - 🥉11 · ⭐ 16 · 💤 · MIT ·
Documentation tool for Markdown conversion by Jupyter client. 19 | - CustomMill - 🥉8 · ⭐ 11 · 💤 · ❗Unlicensed ·
Outstanding mkdocs theme with a focus on navigation, customization and usability. 20 | 21 | -------------------------------------------------------------------------------- /history/2023-09-30_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mkdocs-add-teaser - 🥉8 · ⭐ 5 · 📈 · MIT ·
An MkDocs plugin to customize the first paragraph of your pages, and to use it as the pages meta description. 6 | 7 | ## 📉 Trending Down 8 | 9 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 10 | 11 | - mkdocs-pandoc - 🥉13 · ⭐ 110 · 💤 · Apache-2
[unmaintained] mkdocs - pandoc converter: use this fork https://github.com/twardoch/mkdocs-combine. 12 | 13 | -------------------------------------------------------------------------------- /history/2023-12-28_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - git-revision-date-localized - 🥇29 · ⭐ 150 · 📈 · MIT ·
MkDocs plugin to add a last updated date to your site pages. 6 | - mermaid2 - 🥇23 · ⭐ 180 · 📈 · MIT ·
A Mermaid graphs plugin for mkdocs. 7 | - static-i18n - 🥇23 · ⭐ 180 · 📈 · MIT ·
MkDocs i18n plugin using static translation markdown files. 8 | - encryptcontent - 🥇23 · ⭐ 98 · 📈 · MIT ·
A MkDocs plugin that encrypt/decrypt markdown content with AES. 9 | - minify-html - 🥈14 · ⭐ 1 · 🐣 · MIT ·
MkDocs plugin for minification using minify-html, an extremely fast and smart HTML + JS + CSS minifier. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mkdocs-jupyter - 🥇23 · ⭐ 300 · 📉 · Apache-2 ·
Use Jupyter Notebook in mkdocs. 16 | - mkdocs-gallery - 🥈18 · ⭐ 27 · 📉 · BSD-3 ·
Same features as sphinx-gallery (https://sphinx-gallery.github.io/) but on mkdocs (https://www.mkdocs.org/) (no sphinx.. 17 | - newsletter - 🥈13 · ⭐ 21 · 📉 · ❗️GPL-3.0 ·
Automatically create newsletters from the changes in a mkdocs repository. 18 | - mkdocs-spellcheck - 🥈13 · ⭐ 8 · 📉 · ISC ·
A spell checker plugin for MkDocs. 19 | - MkDocs Backend for Foliant - 🥉11 · ⭐ 3 · 📉 · MIT
MkDocs backend for Foliant. 20 | 21 | -------------------------------------------------------------------------------- /history/2024-01-25_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - print-site - 🥇22 · ⭐ 110 · 📈 · MIT ·
MkDocs Plugin that adds an additional page that combines all pages, allowing easy exports to PDF and standalone HTML. 6 | - section-index - 🥇22 · ⭐ 67 · 📈 · MIT ·
MkDocs plugin to allow clickable sections that lead to an index page. 7 | - markdown-callouts - 🥇18 · ⭐ 19 · 📈 · MIT ·
Markdown extension: a classier syntax for admonitions. 8 | - SWAN - 🥈13 · ⭐ 4 · 📈 · ❗️AGPL-3.0 ·
SWAN MkDocs theme. 9 | - ezglossary - 🥉7 · ⭐ 3 · 🐣 · MIT ·
Glossary support for mkdocs. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mkdocstrings - 🥇31 · ⭐ 1.5K · 📉 · ISC ·
Automatic documentation from sources, for MkDocs. 16 | - mkdocs-jupyter - 🥇22 · ⭐ 310 · 📉 · Apache-2 ·
Use Jupyter Notebook in mkdocs. 17 | - static-i18n - 🥇21 · ⭐ 190 · 📉 · MIT ·
MkDocs i18n plugin using static translation markdown files. 18 | - mkdocs-redirects - 🥇21 · ⭐ 140 · 📉 · MIT ·
Open source plugin for Mkdocs page redirects. 19 | - mkdocs-simple-hooks - 🥈18 · ⭐ 56 · 📉 · MIT ·
Define your own hooks for mkdocs, without having to create a new package. 20 | 21 | -------------------------------------------------------------------------------- /history/2024-02-15_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - plantuml-markdown - 🥇27 · ⭐ 180 · 📈 · BSD-2 ·
PlantUML plugin for Python-Markdown. 6 | - awesome-pages - 🥇25 · ⭐ 410 · 📈 · MIT ·
An MkDocs plugin that simplifies configuring page titles and their order. 7 | - mkdocs-jupyter - 🥇24 · ⭐ 320 · 📈 · Apache-2 ·
Use Jupyter Notebook in mkdocs. 8 | - static-i18n - 🥇23 · ⭐ 190 · 📈 · MIT ·
MkDocs i18n plugin using static translation markdown files. 9 | - markdown-filter - 🥉9 · ⭐ 3 · 💤 · MIT ·
Adds a markdown template filter to the jinja templating environment in mkdocs. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mkdocstrings - 🥇31 · ⭐ 1.5K · 📉 · ISC ·
Automatic documentation from sources, for MkDocs. 16 | - git-revision-date-localized - 🥇28 · ⭐ 160 · 📉 · MIT ·
MkDocs plugin to add a last updated date to your site pages. 17 | - autorefs - 🥈15 · ⭐ 30 · 📉 · ISC ·
Automatically link across pages in MkDocs. 18 | - mkdocs-pandoc - 🥉13 · ⭐ 110 · 💤 · Apache-2
[unmaintained] mkdocs - pandoc converter: use this fork https://github.com/twardoch/mkdocs-combine. 19 | - mkdocs-exclude-unused-files - 🥉8 · ⭐ 2 · 📉 · MIT ·
Exclude orphaned (unused) static files from your mkdocs build. 20 | 21 | -------------------------------------------------------------------------------- /history/2024-02-29_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mkdocstrings - 🥇32 · ⭐ 1.5K · 📈 · ISC ·
Automatic documentation from sources, for MkDocs. 6 | - mermaid2 - 🥇24 · ⭐ 190 · 📈 · MIT ·
A Mermaid graphs plugin for mkdocs. 7 | - htmlproofer - 🥇21 · ⭐ 36 · 📈 · MIT ·
A MkDocs plugin that validates URL in rendered html files. 8 | - autorefs - 🥈18 · ⭐ 31 · 📈 · ISC ·
Automatically link across pages in MkDocs. 9 | - mkdocs-embed-external-markdown - 🥈17 · ⭐ 7 · 📈 · MIT ·
MkDocs Embed External Markdown plugin that allow to inject section or all full markdown content from a given url. The.. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mkdocs-redirects - 🥇21 · ⭐ 140 · 📉 · MIT ·
Open source plugin for Mkdocs page redirects. 16 | - gen-files - 🥈20 · ⭐ 79 · 📉 · MIT ·
MkDocs plugin to programmatically generate documentation pages during the build. 17 | - mkdocs-gallery - 🥈18 · ⭐ 28 · 📉 · BSD-3 ·
Same features as sphinx-gallery (https://sphinx-gallery.github.io/) but on mkdocs (https://www.mkdocs.org/) (no sphinx.. 18 | - mkdocs-pandoc - 🥉13 · ⭐ 110 · 💤 · Apache-2
[unmaintained] mkdocs - pandoc converter: use this fork https://github.com/twardoch/mkdocs-combine. 19 | - SWAN - 🥈12 · ⭐ 4 · 📉 · ❗️AGPL-3.0 ·
SWAN MkDocs theme. 20 | 21 | -------------------------------------------------------------------------------- /history/2024-03-07_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - PyMdown Extensions - 🥇31 · ⭐ 880 · 📈 · ❗Unlicensed ·
Extensions for Python Markdown. 6 | - mike - 🥇28 · ⭐ 440 · 📈 · BSD-3 ·
Manage multiple versions of your MkDocs-powered documentation via Git. 7 | - git-authors - 🥈22 · ⭐ 62 · 📈 · MIT ·
MkDocs plugin to display git authors of a page. 8 | - htmlproofer - 🥇22 · ⭐ 36 · 📈 · MIT ·
A MkDocs plugin that validates URL in rendered html files. 9 | - mkdocs-d2-plugin - 🥈13 · ⭐ 8 · 🐣 · MIT ·
A plugin for embedding D2 diagrams in MkDocs. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - section-index - 🥈20 · ⭐ 68 · 📉 · MIT ·
MkDocs plugin to allow clickable sections that lead to an index page. 16 | - mkdocs-exporter - 🥉12 · ⭐ 49 · 📉 · MIT ·
A plugin for MkDocs that exports your pages as PDF documents. 17 | - mkdocs-git-latest-changes-plugin - 🥉9 · ⭐ 1 · 🐣 · MIT ·
MkDocs plugin that allows you to display a list of recently modified pages from the Git log. 18 | - Github-Links - 🥉7 · ⭐ 9 · 📉 · ❗Unlicensed ·
Python-Markdown GitHub Links Extension. 19 | - inari - 🥉5 · ⭐ 5 · 💤 · MIT ·
Write docstrings in markdown!. 20 | 21 | -------------------------------------------------------------------------------- /history/2024-04-11_changes.md: -------------------------------------------------------------------------------- 1 | Nothing changed from last update. -------------------------------------------------------------------------------- /history/2024-05-23_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - print-site - 🥇23 · ⭐ 120 · 📈 · MIT ·
MkDocs Plugin that adds an additional page that combines all pages, allowing easy exports to PDF and standalone HTML. 6 | 7 | -------------------------------------------------------------------------------- /history/2024-07-04_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - git-revision-date-localized - 🥇29 · ⭐ 180 · 📈 · MIT ·
MkDocs plugin to add a last updated date to your site pages. 6 | - git-revision-date - 🥈20 · ⭐ 56 · 💤 · MIT ·
MkDocs plugin for setting revision date from git per markdown file. 7 | - git-committers-2 - 🥈20 · ⭐ 48 · 📈 · MIT ·
An MkDocs plugin to create a list of contributors on the page. 8 | - MkApi - 🥈18 · ⭐ 95 · 📈 · MIT ·
A plugin for MkDocs to generate API documentation. 9 | - MkAutoDoc - 🥉16 · ⭐ 210 · 💤 · ❗️BSD ·
Auto documentation for MkDocs. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - bibtex - 🥇20 · ⭐ 67 · 📉 · ❗️BSD-3-Clause-LBNL ·
A MkDocs plugin for citation management using bibtex. 16 | - mktestdocs - 🥈14 · ⭐ 100 · 💤 · Apache-2
Run pytest against markdown files/docstrings. 17 | - markdown-emdash - 🥉7 · ⭐ 3 · 💤 · MIT ·
Emdash extension for python-markdown. 18 | 19 | -------------------------------------------------------------------------------- /history/2024-07-11_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - git-committers-2 - 🥈21 · ⭐ 49 · 📈 · MIT ·
An MkDocs plugin to create a list of contributors on the page. 6 | - Publisher for MkDocs - blog - 🥈16 · ⭐ 44 · 📈 · MIT ·
Blogging engine. 7 | - Publisher for MkDocs - social - 🥈16 · ⭐ 44 · 📈 · MIT ·
Social media sharing helper. 8 | - Publisher for MkDocs - minifier - 🥈16 · ⭐ 44 · 📈 · MIT ·
HTML, CSS and graphics files size optimization. 9 | - Publisher for MkDocs - obsidian - 🥈16 · ⭐ 44 · 📈 · MIT ·
Obsidian.md integration including with support for wiki links, callouts, etc. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mkdocs-alias-plugin - 🥈12 · ⭐ 11 · 📉 · MIT ·
An MkDocs plugin allowing links to your pages using a custom alias. 16 | - Zettelkasten - 🥉9 · ⭐ 9 · 📉 · MIT ·
This is a Zettelkasten theme and plugin for MkDocs. It renders the MkDocs pages as cards (zettels). 17 | - nbconvert - 🥉9 · ⭐ 8 · 📉 · BSD-2 ·
A MkDocs plug-in provides a source parser for *.ipynb files. 18 | 19 | ## ➕ Added Projects 20 | 21 | _Projects that were recently added to this best-of list._ 22 | 23 | - mkdocs-auto-refresh-build-pages - 🥉9 · 🐣 · MIT ·
MkDocs plugin that automatically refreshes the build pages when the documentation is updated. 24 | 25 | -------------------------------------------------------------------------------- /history/2024-07-18_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - static-i18n - 🥇24 · ⭐ 220 · 📈 · MIT ·
MkDocs i18n plugin using static translation markdown files. 6 | - git-authors - 🥈23 · ⭐ 71 · 📈 · MIT ·
MkDocs plugin to display git authors of a page. 7 | - simple - 🥈21 · ⭐ 40 · 📈 · Apache-2 ·
Build documentation files inside your code into a MkDocs site. 8 | - mktestdocs - 🥇18 · ⭐ 100 · 📈 · Apache-2
Run pytest against markdown files/docstrings. 9 | - mkdocs_safe_text - 🥈13 · ⭐ 3 · 📈 · BSD-2 ·
Plugin for safe text editing with MKDocs. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mermaid2 - 🥇22 · ⭐ 200 · 📉 · MIT ·
A Mermaid graphs plugin for mkdocs. 16 | - table-reader - 🥈21 · ⭐ 110 · 📉 · MIT ·
MkDocs plugin that enables a markdown tag like {{ read_csv(table.csv) }} to directly insert various table formats into.. 17 | - encryptcontent - 🥇20 · ⭐ 120 · 📉 · MIT ·
A MkDocs plugin that encrypt/decrypt markdown content with AES. 18 | - htmlproofer - 🥇20 · ⭐ 40 · 📉 · MIT ·
A MkDocs plugin that validates URL in rendered html files. 19 | - file-filter - 🥈14 · ⭐ 8 · 📉 · MIT ·
A MkDocs plugin that lets you exclude/include docs files using globs, regexes, gitignore-style file and.. 20 | 21 | -------------------------------------------------------------------------------- /history/2024-08-08_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - git-authors - 🥈23 · ⭐ 75 · 📈 · MIT ·
MkDocs plugin to display git authors of a page. 6 | - Terminal for MkDocs - 🥈17 · ⭐ 91 · 💤 · MIT ·
monospace theme for MkDocs. 7 | - mkdocs-link-embeds - 🥈13 · ⭐ 5 · 🐣 · MIT ·
Mkdocs plugin which displays links in a more elegant way. Links will automatically be populated with an image,.. 8 | - user-defined-values - 🥉13 · ⭐ 4 · 💤 · MIT ·
MkDocs User Defined Values. 9 | - meta-manager - 🥉9 · ⭐ 1 · 📈 · MIT ·
MkDocs plugin for managing meta tags across folders and files. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - PyMdown Extensions - 🥇31 · ⭐ 930 · 📉 · ❗Unlicensed ·
Extensions for Python Markdown. 16 | - MkDocs GLightbox - 🥈20 · ⭐ 120 · 📉 · MIT ·
A MkDocs plugin supports image lightbox (zoom effect) with GLightbox. 17 | - newsletter - 🥉11 · ⭐ 30 · 📉 · ❗️GPL-3.0 ·
Automatically create newsletters from the changes in a mkdocs repository. 18 | - Lantana - 🥈11 · ⭐ 12 · 📉 · MIT ·
Lantana MKDocsHTML. 19 | - snippet - 🥉10 · ⭐ 12 · 💤 · MIT ·
An mkdocs plugin that injects snippets from a file in a git repository. 20 | 21 | -------------------------------------------------------------------------------- /history/2024-09-12_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - PyMdown Extensions - 🥇32 · ⭐ 940 · 📈 · ❗Unlicensed ·
Extensions for Python Markdown. 6 | - git-revision-date-localized - 🥇30 · ⭐ 200 · 📈 · MIT ·
MkDocs plugin to add a last updated date to your site pages. 7 | - print-site - 🥇24 · ⭐ 140 · 📈 · MIT ·
MkDocs Plugin that adds an additional page that combines all pages, allowing easy exports to PDF and standalone HTML. 8 | - MkApi - 🥈20 · ⭐ 94 · 📈 · MIT ·
A plugin for MkDocs to generate API documentation. 9 | - mkdocs-open-in-new-tab - 🥈16 · ⭐ 22 · 📈 · MIT ·
This plugin adds JS to open outgoing links and PDFs in a new tab. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mkdocs-auto-refresh-build-pages - 🥉8 · 🐣 · MIT ·
MkDocs plugin that automatically refreshes the build pages when the documentation is updated. 16 | - mkdocs-pipeline-visualizer - 🥉7 · ⭐ 1 · 🐣 · BSD-2 ·
Generates MD documentation from tekton pipelines and tasks. 17 | 18 | -------------------------------------------------------------------------------- /history/2024-10-03_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - encryptcontent - 🥇21 · ⭐ 130 · 📈 · MIT ·
A MkDocs plugin that encrypt/decrypt markdown content with AES. 6 | - mktestdocs - 🥇19 · ⭐ 110 · 📈 · Apache-2
Run pytest against markdown files/docstrings. 7 | - Simple Blog - 🥈16 · ⭐ 73 · 📈 · MIT ·
Blog Template for Mkdocs. 8 | - mkdocs-render-swagger-plugin - 🥈16 · ⭐ 73 · 📈 · MIT ·
A plugin for MKDocs for rendering swagger & openapi schemas using SwaggerUI. 9 | - MarkdownSuperscript - 🥈12 · ⭐ 2 · 💤 · BSD-2 ·
An extension to the Python Markdown package enabling superscript text. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - awesome-pages - 🥇25 · ⭐ 470 · 📉 · MIT ·
An MkDocs plugin that simplifies configuring page titles and their order. 16 | - mkdocs-jupyter - 🥇24 · ⭐ 380 · 📉 · Apache-2 ·
Use Jupyter Notebook in mkdocs. 17 | - rss - 🥇23 · ⭐ 84 · 📉 · MIT ·
MkDocs plugin to generate a RSS feeds for created and updated pages, using git log and YAML frontmatter (page.meta). 18 | - gen-files - 🥈20 · ⭐ 110 · 📉 · MIT ·
MkDocs plugin to programmatically generate documentation pages during the build. 19 | - drawio-exporter - 🥈17 · ⭐ 78 · 📉 · MIT ·
Exports your Draw.io diagrams at build time for easier embedding into your documentation. 20 | 21 | -------------------------------------------------------------------------------- /history/2024-10-10_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - macros - 🥇29 · ⭐ 330 · 📈 · MIT ·
Create richer and more beautiful pages in MkDocs, by using variables and calls to macros in the markdown code. 6 | - rss - 🥇24 · ⭐ 84 · 📈 · MIT ·
MkDocs plugin to generate a RSS feeds for created and updated pages, using git log and YAML frontmatter (page.meta). 7 | - MkApi - 🥇23 · ⭐ 99 · 📈 · MIT ·
A plugin for MkDocs to generate API documentation. 8 | - git-committers-2 - 🥈23 · ⭐ 58 · 📈 · MIT ·
An MkDocs plugin to create a list of contributors on the page. 9 | - minify - 🥇22 · ⭐ 150 · 📈 · MIT ·
A mkdocs plugin to minify the HTML of a page before it is written to disk. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - add-number - 🥉11 · ⭐ 16 · 💤 · MIT ·
MkDocs plugin to automatically number the headings (h1-h6) in each markdown page and the nav. 16 | - mkdocs-issues-plugin - 🥉7 · ⭐ 1 · 🐣 · MIT ·
A plugin for showing the state and labels of issues, PRs and discussions (GitHub or GitLab) in mkdocs generated docs. 17 | - git-latest-release - 🥉4 · ⭐ 1 · 💤 · ❗️GPL-3.0 ·
Plugin for MKDocs to inject the latest release tag from git into markdown. 18 | 19 | ## ➕ Added Projects 20 | 21 | _Projects that were recently added to this best-of list._ 22 | 23 | - Landing - 🥉7 · ⭐ 1 · 🐣 · ❗Unlicensed · 24 | 25 | -------------------------------------------------------------------------------- /history/2024-10-24_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - include-markdown - 🥇24 · ⭐ 110 · 📈 · Apache-2 ·
Mkdocs Markdown includer plugin. 6 | - encryptcontent - 🥇22 · ⭐ 130 · 📈 · MIT ·
A MkDocs plugin that encrypt/decrypt markdown content with AES. 7 | - charts - 🥈20 · ⭐ 82 · 📈 · MIT ·
Mkdocs plugin to add plots from data using vegalite. 8 | - mkdocs_puml - 🥈20 · ⭐ 29 · 📈 · MIT ·
Inline PlantUML diagrams in your MkDocs documentation. 9 | - mktestdocs - 🥇19 · ⭐ 110 · 📈 · Apache-2
Run pytest against markdown files/docstrings. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - awesome-pages - 🥇24 · ⭐ 480 · 📉 · MIT ·
An MkDocs plugin that simplifies configuring page titles and their order. 16 | - mkdocs-jupyter - 🥇24 · ⭐ 390 · 📉 · Apache-2 ·
Use Jupyter Notebook in mkdocs. 17 | - kroki - 🥇22 · ⭐ 47 · 📉 · MIT ·
MkDocs plugin for Kroki-Diagrams. 18 | - mkdocs-task-collector - 🥉7 · ⭐ 1 · 🐣 · MIT ·
mkdocs plugin to generate a comprehensive and organized task list, making it easier to manage and track tasks, notes,.. 19 | 20 | -------------------------------------------------------------------------------- /history/2024-10-31_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - awesome-pages - 🥇25 · ⭐ 480 · 📈 · MIT ·
An MkDocs plugin that simplifies configuring page titles and their order. 6 | - mkdocs_puml - 🥈21 · ⭐ 30 · 📈 · MIT ·
Inline PlantUML diagrams in your MkDocs documentation. 7 | - mktestdocs - 🥇20 · ⭐ 110 · 📈 · Apache-2
Run pytest against markdown files/docstrings. 8 | - MkDocs Swagger UI Tag - 🥇19 · ⭐ 78 · 📈 · MIT ·
A MkDocs plugin supports adding Swagger UI to the page. 9 | - mkdocs-exporter - 🥈18 · ⭐ 81 · 📈 · MIT ·
The fastest and most configurable plugin for MkDocs, allowing seamless export of individual pages and/or entire.. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - git-revision-date-localized - 🥇24 · ⭐ 210 · 📉 · MIT ·
MkDocs plugin to add a last updated date to your site pages. 16 | - git-authors - 🥈20 · ⭐ 86 · 📉 · MIT ·
MkDocs plugin to display git authors of a page. 17 | - mknotebooks - 🥈16 · ⭐ 140 · 💤 · MIT ·
A plugin for mkdocs to help you include Jupyter notebooks in your projects. 18 | - mkdocs-callouts - 🥈15 · ⭐ 29 · 📉 · MIT ·
A simple MkDocs plugin that converts Obsidian callout blocks to mkdocs supported Admonitions. 19 | - Bootstrap - 🥈13 · ⭐ 84 · 📉 · BSD-2 ·
MkDocs Bootstrap Theme. 20 | 21 | -------------------------------------------------------------------------------- /history/2024-12-05_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - rss - 🥇25 · ⭐ 91 · 📈 · MIT ·
MkDocs plugin to generate a RSS feeds for created and updated pages, using git log and YAML frontmatter (page.meta). 6 | 7 | ## 📉 Trending Down 8 | 9 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 10 | 11 | - mkdocstrings - 🥇26 · ⭐ 1.7K · 📉 · ISC ·
Automatic documentation from sources, for MkDocs. 12 | - PyMdown Extensions - 🥇25 · ⭐ 970 · 📉 · ❗Unlicensed ·
Extensions for Python Markdown. 13 | - macros - 🥇24 · ⭐ 340 · 📉 · MIT ·
Create richer and more beautiful pages in MkDocs, by using variables and calls to macros in the markdown code. 14 | - table-reader - 🥈12 · ⭐ 130 · 📉 · MIT ·
MkDocs plugin that enables a markdown tag like {{ read_csv(table.csv) }} to directly insert various table formats into.. 15 | - mkdocs-render-swagger-plugin - 🥉8 · ⭐ 75 · 📉 · MIT ·
A plugin for MKDocs for rendering swagger & openapi schemas using SwaggerUI. 16 | 17 | -------------------------------------------------------------------------------- /history/2024-12-12_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mkdocstrings - 🥇32 · ⭐ 1.8K · 📈 · ISC ·
Automatic documentation from sources, for MkDocs. 6 | - PyMdown Extensions - 🥇32 · ⭐ 970 · 📈 · ❗Unlicensed ·
Extensions for Python Markdown. 7 | - macros - 🥇30 · ⭐ 340 · 📈 · MIT ·
Create richer and more beautiful pages in MkDocs, by using variables and calls to macros in the markdown code. 8 | - markdown-exec - 🥈22 · ⭐ 120 · 📈 · ISC ·
Utilities to execute code blocks in Markdown files. 9 | - table-reader - 🥈19 · ⭐ 130 · 📈 · MIT ·
MkDocs plugin that enables a markdown tag like {{ read_csv(table.csv) }} to directly insert various table formats into.. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - mkdocs-embed-external-markdown - 🥉14 · ⭐ 10 · 📉 · MIT ·
MkDocs Embed External Markdown plugin that allow to inject section or all full markdown content from a given url. The.. 16 | - Markdown PyCon - 🥉5 · ⭐ 1 · 📉 · ISC ·
Markdown extension to parse `pycon` code blocks without indentation or fences. 17 | - docstyler - 🥉3 · ⭐ 1 · 💤 · BSD-3 ·
Plugin to add alternative stylesheets to MkDocs custom themes. 18 | 19 | ## ➕ Added Projects 20 | 21 | _Projects that were recently added to this best-of list._ 22 | 23 | - mkdocs-ai-summary - 🥉8 · ⭐ 5 · ➕ · MIT ·
A mkdocs plugin to generage summary with the help of AI. 24 | 25 | -------------------------------------------------------------------------------- /history/2024-12-26_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - awesome-pages - 🥇27 · ⭐ 500 · 📈 · MIT ·
An MkDocs plugin that simplifies configuring page titles and their order. 6 | - git-committers-2 - 🥈25 · ⭐ 61 · 📈 · MIT ·
An MkDocs plugin to create a list of contributors on the page. 7 | - htmlproofer - 🥇20 · ⭐ 44 · 📈 · MIT ·
A MkDocs plugin that validates URL in rendered html files. 8 | - minify-html - 🥈18 · ⭐ 9 · 📈 · MIT ·
MkDocs plugin for minification using minify-html, an extremely fast and smart HTML + JS + CSS minifier. 9 | - Publisher for MkDocs - blog - 🥈16 · ⭐ 70 · 📈 · MIT ·
Blogging engine with support for categories, tags and archive. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - markdown-exec - 🥈21 · ⭐ 120 · 📉 · ISC ·
Utilities to execute code blocks in Markdown files. 16 | - gen-files - 🥈20 · ⭐ 120 · 📉 · MIT ·
MkDocs plugin to programmatically generate documentation pages during the build. 17 | - mktestdocs - 🥇19 · ⭐ 110 · 📉 · Apache-2
Run pytest against markdown files/docstrings. 18 | - mkdocs-gallery - 🥈15 · ⭐ 41 · 📉 · BSD-3 ·
Same features as sphinx-gallery (https://sphinx-gallery.github.io/) but on mkdocs (https://www.mkdocs.org/) (no sphinx.. 19 | - codeinclude - 🥈15 · ⭐ 14 · 💤 · MIT ·
A plugin to include code snippets into mkdocs pages. 20 | 21 | -------------------------------------------------------------------------------- /history/2025-01-02_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mkdocs-gallery - 🥈16 · ⭐ 42 · 📈 · BSD-3 ·
Same features as sphinx-gallery (https://sphinx-gallery.github.io/) but on mkdocs (https://www.mkdocs.org/) (no sphinx.. 6 | - mktheapidocs - 🥉14 · ⭐ 13 · 💤 · MIT ·
Numpydocs - mkdocs friendly markdown. 7 | - panzoom - 🥈13 · ⭐ 21 · 🐣 · MIT ·
MkDocs Plugin to enable pan & zoom on images and mermaid/d2 diagrams. 8 | - unused-files - 🥈12 · ⭐ 10 · 💤 · MIT ·
An MkDocs plugin to find unused (orphaned) files in your project. 9 | - Termage - 🥉11 · ⭐ 25 · 💤 · MIT ·
Generate SVGs from any Python code, even in your documentation. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - git-committers-2 - 🥈22 · ⭐ 62 · 📉 · MIT ·
An MkDocs plugin to create a list of contributors on the page. 16 | - kroki - 🥇21 · ⭐ 51 · 📉 · MIT ·
MkDocs plugin for Kroki-Diagrams. 17 | - mktestdocs - 🥇17 · ⭐ 110 · 📉 · Apache-2
Run pytest against markdown files/docstrings. 18 | - charts - 🥈16 · ⭐ 84 · 📉 · MIT ·
Mkdocs plugin to add plots from data using vegalite. 19 | - mkdocs-new-features-notifier - 🥉3 · ⭐ 3 · 💤 · MIT ·
This plugin enables you to notify users of new features in your product. It does this by identifying new documentation.. 20 | 21 | -------------------------------------------------------------------------------- /history/2025-01-09_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - Terminal for MkDocs - 🥇20 · ⭐ 200 · 📈 · MIT ·
monospace theme for MkDocs. 6 | - Autolink References - 🥈12 · ⭐ 18 · 💤 · MIT ·
mkdocs plugin to provides GitHub like autolink references in Mkdocs. 7 | - Github Releaase Changelog - 🥉7 · ⭐ 5 · 📈 · MIT ·
mkdocs extension to autogenerate changelog from github releases. 8 | - GitHub - 🥉7 · ⭐ 2 · 💤 · MIT ·
Theme Mkdocs Like a Github. DEMO =. 9 | - mkdocs-new-features-notifier - 🥉5 · ⭐ 3 · 💤 · MIT ·
This plugin enables you to notify users of new features in your product. It does this by identifying new documentation.. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - macros - 🥇29 · ⭐ 350 · 📉 · MIT ·
Create richer and more beautiful pages in MkDocs, by using variables and calls to macros in the markdown code. 16 | - git-committers-2 - 🥈21 · ⭐ 63 · 📉 · MIT ·
An MkDocs plugin to create a list of contributors on the page. 17 | - mkdocs_puml - 🥈19 · ⭐ 34 · 📉 · MIT ·
Inline PlantUML diagrams in your MkDocs documentation. 18 | - mkdocs-open-in-new-tab - 🥈17 · ⭐ 29 · 📉 · MIT ·
This plugin adds JS to open outgoing links and PDFs in a new tab. 19 | - mktestdocs - 🥈16 · ⭐ 110 · 📉 · Apache-2
Run pytest against markdown files/docstrings. 20 | 21 | -------------------------------------------------------------------------------- /history/2025-01-16_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - markdown-version-annotations - 🥉12 · ⭐ 6 · 📈 · MIT ·
MkDocs plugin to add custom admonitions for documenting version differences. 6 | 7 | ## ➕ Added Projects 8 | 9 | _Projects that were recently added to this best-of list._ 10 | 11 | - mkdocs-material-adr - 🥉10 · ⭐ 6 · ➕ · Apache-2 ·
ADR for MkDocss Material Theme. 12 | 13 | -------------------------------------------------------------------------------- /history/2025-02-13_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mkdocstrings - 🥇34 · ⭐ 1.8K · 📈 · ISC ·
Automatic documentation from sources, for MkDocs. 6 | - MkDocs GLightbox - 🥇23 · ⭐ 150 · 📈 · MIT ·
A MkDocs plugin supports image lightbox (zoom effect) with GLightbox. 7 | - panzoom - 🥈16 · ⭐ 23 · 🐣 · MIT ·
MkDocs Plugin to enable pan & zoom on images and mermaid/d2 diagrams. 8 | - ezglossary - 🥉11 · ⭐ 13 · 📈 · MIT ·
Glossary support for mkdocs. 9 | - mkdocs-api-autonav - 🥉10 · ⭐ 5 · 🐣 · BSD-3 · 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - drawio-exporter - 🥇20 · ⭐ 81 · 📉 · MIT ·
Exports your Draw.io diagrams at build time for easier embedding into your documentation. 16 | - mkdocs-callouts - 🥇18 · ⭐ 37 · 📉 · MIT ·
A simple MkDocs plugin that converts Obsidian callout blocks to mkdocs supported Admonitions. 17 | - Termynal - 🥈16 · ⭐ 100 · 📉 · MIT ·
Python markdown terminal. Built for mkdocs. 18 | - mkdocs-d2-plugin - 🥈16 · ⭐ 25 · 📉 · MIT ·
A plugin for embedding D2 diagrams in MkDocs. 19 | - markdown-docs - 🥈16 · ⭐ 22 · 📉 · MIT ·
Action/docker image that transforms your markdown into a static website. No need for particular configuration: it just.. 20 | 21 | -------------------------------------------------------------------------------- /history/2025-03-27_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - MkDocs GLightbox - 🥇25 · ⭐ 160 · 📈 · MIT ·
A MkDocs plugin supports image lightbox (zoom effect) with GLightbox. 6 | - techdocs-core - 🥇23 · ⭐ 97 · 📈 · Apache-2 ·
The core MkDocs plugin used by Backstages TechDocs as a wrapper around multiple MkDocs plugins and Python Markdown.. 7 | - kroki - 🥇21 · ⭐ 54 · 📈 · MIT ·
MkDocs plugin for Kroki-Diagrams. 8 | - Simple Blog - 🥇20 · ⭐ 93 · 📈 · MIT ·
Blog Template for Mkdocs. 9 | - mkdocs-spellcheck - 🥇18 · ⭐ 19 · 📈 · ISC ·
A spell checker plugin for MkDocs. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - Terminal for MkDocs - 🥈19 · ⭐ 240 · 📉 · MIT ·
monospace theme for MkDocs. 16 | - extract listings - 🥉7 · ⭐ 2 · 📉 · MIT ·
Generate a page with all listings and/or a search page for listings. 17 | - Markdown PyCon - 🥉5 · ⭐ 1 · 📉 · ISC ·
Markdown extension to parse `pycon` code blocks without indentation or fences. 18 | 19 | ## ➕ Added Projects 20 | 21 | _Projects that were recently added to this best-of list._ 22 | 23 | - mkdocs-marimo - 🥉12 · ⭐ 38 · 🐣 · Apache-2 ·
mkdocs plugin for reactive and interactive docs with marimo. 24 | 25 | -------------------------------------------------------------------------------- /history/2025-04-03_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - minify - 🥇23 · ⭐ 170 · 💤 · MIT ·
A mkdocs plugin to minify the HTML of a page before it is written to disk. 6 | - mkdocs-click - 🥈20 · ⭐ 120 · 💤 · Apache-2 ·
An MkDocs extension to generate documentation for Click command line applications. 7 | - panzoom - 🥈20 · ⭐ 28 · 📈 · MIT ·
MkDocs Plugin to enable pan & zoom on images and mermaid/d2 diagrams. 8 | - mkdocs-marimo - 🥉14 · ⭐ 38 · 📈 · Apache-2 ·
mkdocs plugin for reactive and interactive docs with marimo. 9 | - mkdocstrings-shell - 🥉12 · ⭐ 2 · 📈 · ISC
A shell scripts/libraries handler for mkdocstrings. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - rss - 🥇25 · ⭐ 100 · 📉 · MIT ·
MkDocs plugin to generate a RSS feeds for created and updated pages, using git log and YAML frontmatter (page.meta). 16 | - monorepo - 🥇23 · ⭐ 340 · 📉 · Apache-2 ·
Build multiple documentation folders in a single Mkdocs. Designed for large codebases. 17 | - static-i18n - 🥇22 · ⭐ 260 · 📉 · MIT ·
MkDocs i18n plugin using static translation markdown files. 18 | - mkdocs-simple-hooks - 🥈13 · ⭐ 62 · 💤 · MIT ·
Define your own hooks for mkdocs, without having to create a new package. 19 | - mkdocstrings-vba - 🥉11 · ⭐ 3 · 📉 · ISC
VBA handler for mkdocstrings. 20 | 21 | -------------------------------------------------------------------------------- /history/2025-04-17_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mkdocstrings - 🥇35 · ⭐ 1.9K · 📈 · ISC ·
Automatic documentation from sources, for MkDocs. 6 | - markdown-callouts - 🥇18 · ⭐ 33 · 📈 · MIT ·
Markdown extension: a classier syntax for admonitions. 7 | - mkdocs-gallery - 🥈16 · ⭐ 49 · 📈 · BSD-3 ·
Same features as sphinx-gallery (https://sphinx-gallery.github.io/) but on mkdocs (https://www.mkdocs.org/) (no sphinx.. 8 | - mkdocs-pandoc - 🥉14 · ⭐ 110 · 💤 · Apache-2
[unmaintained] mkdocs - pandoc converter: use this fork https://github.com/twardoch/mkdocs-combine. 9 | - mkdocs-curriculum-vitae - 🥈14 · ⭐ 3 · 📈 · MIT ·
A simple MkDocs theme, designed to make your curriculum vitae (CV) with minimal configuration, and several themes. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - toc-sidebar - 🥉11 · ⭐ 5 · 💤 · MIT ·
An MkDocs plugin that allows users to add additional content to the ToC sidebar using the Material theme. 16 | - nbconvert - 🥉6 · ⭐ 9 · 📉 · BSD-2 ·
A MkDocs plug-in provides a source parser for *.ipynb files. 17 | - mkdocs-new-features-notifier - 🥉5 · ⭐ 4 · 💤 · MIT ·
This plugin enables you to notify users of new features in your product. It does this by identifying new documentation.. 18 | 19 | -------------------------------------------------------------------------------- /history/2025-05-29_changes.md: -------------------------------------------------------------------------------- 1 | ## 📈 Trending Up 2 | 3 | _Projects that have a higher project-quality score compared to the last update. There might be a variety of reasons, such as increased downloads or code activity._ 4 | 5 | - mkdocstrings-python - 🥇27 · ⭐ 230 · 📈 · ISC
A Python handler for mkdocstrings. 6 | - plantuml-markdown - 🥇27 · ⭐ 210 · 📈 · BSD-2 ·
PlantUML plugin for Python-Markdown. 7 | - mkdocs-multirepo-plugin - 🥇23 · ⭐ 160 · 📈 · MIT ·
Build documentation in multiple repos into one site. 8 | - mkdocs-click - 🥇23 · ⭐ 130 · 📈 · Apache-2 ·
An MkDocs extension to generate documentation for Click command line applications. 9 | - webcontext - 🥉9 · ⭐ 1 · 📈 · MIT ·
Mkdocs plugin for converting absolute paths to webcontext aware paths using the configured webcontext context. 10 | 11 | ## 📉 Trending Down 12 | 13 | _Projects that have a lower project-quality score compared to the last update. There might be a variety of reasons such as decreased downloads or code activity._ 14 | 15 | - kroki - 🥈20 · ⭐ 54 · 📉 · MIT ·
MkDocs plugin for Kroki-Diagrams. 16 | - Terminal for MkDocs - 🥈18 · ⭐ 260 · 📉 · MIT ·
monospace theme for MkDocs. 17 | - autorefs - 🥈18 · ⭐ 66 · 📉 · ISC ·
Automatically link across pages in MkDocs. 18 | - Zettelkasten - 🥈16 · ⭐ 18 · 📉 · MIT ·
This is a Zettelkasten theme and plugin for MkDocs. It renders the MkDocs pages as cards (zettels). 19 | - mkdocs-pandoc - 🥉13 · ⭐ 110 · 💤 · Apache-2
[unmaintained] mkdocs - pandoc converter: use this fork https://github.com/twardoch/mkdocs-combine. 20 | 21 | --------------------------------------------------------------------------------