Skip to main content

Markdown extension to expand directives to include source example files to also include their variants. Only useful to tiangolo's projets. Don't use it. 😅

Project description

markdown-include-variants

Test Publish Coverage Package version

🚨 Warning: Internal Project

This is an internal project, it is mainly useful for the docs in @tiangolo's projects (e.g. all the FastAPI projects).

It is probably not useful to you. You should probably not use it. 😅

There are no guarantees about behavior, it is made to suit the needs of these projects, to simplify writing documentation.

How to Use

If you're still here it's probably because you are getting involved in one of the projects that use it. 🤓

Here's how it works:

  • You add a Python source example to the docs_src directory, with the minimum Python version supported by the project, and using the old format without Annotated, if that applies, it would be named something like tutorial001.py.
  • Copy the file and update it to use Annotated (if that applies), and name the file with a "tag" (a prefix) of an, like: tutorial001_an.py.
  • Run the internal script to generate the variants of the files for superior versions of Python, like 3.9, 3.10, etc. (this internal script is in the project itself). This would generate files like tutorial001_py39.py, tutorial001_py310.py, etc. and tutorial001_an_py39.py, tutorial001_an_py310.py, etc.
  • In the Markdown file, include the simplest version of the file, using this syntax:
{* ./docs_src/first_steps/tutorial001.py *}

That will be automatically expanded with mdx-include to include the recommended version of the file (the highest version of Python, using Annotated), and will include the variants below in a collapsed details box.

Include Lines

To include specific line ranges, use the config ln:

{* ./docs_src/first_steps/tutorial001.py ln[3:6,8,10:11] *}

That will include only:

  • lines 3 to 6
  • line 8
  • lines 10 to 11

It will add blocks with comments in the middle like:

# Code here omitted 👈️

If you include specific lines, it will also add another collapsed details box with the "Full file preview".

Highlight Lines

You can highlight specific lines using the config hl:

{* ./docs_src/first_steps/tutorial001.py hl[3,5:7,10] *}

That will highlight:

  • line 3
  • lines 5 to 7
  • line 10

Have in mind that the file path points to the simplest version of the file, the one without the _an suffix. But the main file shown will be the highest (recommended) version, and the highlights will apply to that file.

So, when deciding which lines to highlight, do that based on the highest version of the file.

Include Lines and Highlight

You can combine both ln and hl:

{* ./docs_src/first_steps/tutorial001.py ln[3:6,8,10:11] hl[3,5:6,10] *}

The highlighted lines refer to the source file (for the highest/recommended version), not the final rendered code block.

This makes it easier to decide which lines to highlight just by opening the source file, without having to calculate the actual lines in the rendered block after included, the extra lines for comments when omitting lines, etc.

Include Lines and Highlight - Example

For example, you could have a source file with:

print("line 1")
print("line 2")
print("line 3")
print("line 4")
print("line 5")
print("line 6")  # highlight this
print("line 7")

Using a declaration like this:

{* ./docs_src/first_steps/tutorial001.py ln[5:7] hl[6] *}

Could render something like:

# Code above omitted 👈️

print("line 5")
print("line 6")  # highlight this
print("line 7")

Notice that the comment above adds 2 extra lines, and only the desired lines are included, the result is that the actual highlighted line is the rendered line 4, but the source line 6, it's all calculated automatically. 🤓

License

This project is licensed under the terms of the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

markdown_include_variants-0.0.1.tar.gz (40.8 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file markdown_include_variants-0.0.1.tar.gz.

File metadata

File hashes

Hashes for markdown_include_variants-0.0.1.tar.gz
Algorithm Hash digest
SHA256 ebb2dc6d5fe4ffd14fca3e1f3858d2a7dfc2b129e62217bcd3e8580db0b8dbd4
MD5 a6f28244705dc819e63b91ac4956f077
BLAKE2b-256 8687c3fed9d4835618c9fcc6fed73eaf9d6e2e7f860bd2355fce9b92a9f51872

See more details on using hashes here.

File details

Details for the file markdown_include_variants-0.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for markdown_include_variants-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 817104617a721211512ceb11663db84b639a03a0e9f5268eebc4ce5714b5c506
MD5 231cb5af6b4ea612c681ecab1dd0546f
BLAKE2b-256 cf07b50494154e12aad16f1216809afea75a88588966c02fc9bc90bcb2cb9e99

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page