Personal tools
Skip to content. | Skip to navigation
Mistral Python Client Mistral AI API: Our Chat Completion and Embeddings APIs specification.
Python client for Mistral REST API. Includes python library for Mistral API and Command Line Interface (CLI) library.
The fastest markdown parser in pure Python, inspired by marked.
A fast yet powerful Python Markdown parser with renderers and plugins.Useful Links 1. GitHub: Mistune is licensed under BSD. Please see LICENSE for licensing details.
MkDocs Project documentation with Markdown MkDocs is a fast, simple and downright gorgeous static site generator that's geared towards building project documentation. Documentation source files are written in Markdown, and configured with a single YAML configuration file. It is designed to be easy to use and can be extended with third-party themes, plugins, and Markdown extensions. Please see the Documentation for an introductory tutorial and a full user guide. Features Build static HTML files from Markdown files. Use Plugins and Markdown Extensions to enhance MkDocs. Use the built-in themes, third party themes or create your own. Publish your documentation anywhere that static files can be served. Much more! Support If you need help with MkDocs, do not hesitate to get in contact with us! For questions and high-level discussions, use Discussions on GitHub. For small questions, a good alternative is the Chat room on Gitter/Matrix. To report a bug or make a feature request, op
mkdocs-autorefs Automatically link across pages in MkDocs. Installation With pip: python3 -m pip install mkdocs-autorefs Usage plugins: - search - autorefs In one of your Markdown files (e.g. doc1.md) create some headings: Link to [Hello, World!](#hello-world) on the same page. This is a normal link to an anchor. MkDocs generates anchors for each heading, and they can always be used to link to something, either within the same page (as shown here) or by specifying the path of the other page. But with this plugin, you can link to a heading from any other page on the site without needing to know the path of either of the pages, just the heading title itself. Let's create another Markdown page to try this, subdir/doc2.md: We can [link to that heading][hello-world] from another page too. This works the same as [a normal link to that heading](../doc1.md#hello-world). Linking to a heading without needing to know the destinatio
mkdocs-get-deps An extra command for MkDocs that infers required PyPI packages from plugins in mkdocs.yml. Installation:Alternatively through MkDocs itself: pip install mkdocs-get-deps pip install mkdocs This command guesses the Python dependencies that a MkDocs site requires in order to build. It simply prints the PyPI packages that need to be installed. In the terminal it can be combined directly with a pip install command, as per the last example below: Usage:Alternatively through MkDocs itself: mkdocs-get-deps mkdocs-get-deps > requirements.txt pip install $(mkdocs-get-deps) mkdocs get-deps mkdocs get-deps > requirements.txt pip install -r requirements.txt pip install $(mkdocs get-deps) The idea is that right after running this command, you can directly follow it up with mkdocs build and it will almost always "just work", without needing to think which dependenci