Code Monkey home page Code Monkey logo

pymdownx-superfence-filter-lines-python's Introduction

Frequenz Filter Lines Superfence

Build Status PyPI Package Docs

Introduction

A custom superfence for pymdown-extensions that can filters lines and plays nice with MkDocs.

This is particularly useful when you want to hide some comments or some boilerplate code from the documentation for any reason.

A typical use case is when you are testing your examples in the documentation, so you might need to add some initialization code, or importing some dependencies that are not relevant for the point you are trying to make in the documentation, but you still need the example code to work to make sure they are not inadvertedly broken.

Quick Example

When writing some documentation, and you want to show some code block, but you want to show only some lines, you can use this superfence as follows:

```text show_lines=":2,4,7,10:12,15:"
This is line 1
This is line 2
This is line 3
This is line 4
This is line 5
This is line 6
This is line 7
This is line 8
This is line 9
This is line 10
This is line 11
This is line 12
This is line 13
This is line 14
This is line 15
This is line 16
This is line 17
```

This will show the following block of code in the rendered output:

This is line 1
This is line 2
This is line 3
This is line 4
This is line 5
This is line 6
This is line 7
This is line 8
This is line 9
This is line 10
This is line 11
This is line 12
This is line 13
This is line 14
This is line 15
This is line 16
This is line 17

See Usage for a more detailed explanation of the available options.

Configuration

MkDocs

To use this superfence with MkDocs, you can use something like this:

markdown_extensions:
  - pymdownx.superfences:
      custom_fences:
        - name: "*"
          class: "highlight"
          format: !!python/name:pymdownx_superfence_filter_lines.do_format
          validator: !!python/name:pymdownx_superfence_filter_lines.do_validate

Standalone

To use this superfence standalone, you can use something like this:

import markdown
from pymdownx_superfence_filter_lines import do_format, do_validate

html = markdown.markdown(
    markdown_source,
    extensions=['pymdownx.superfence'],
    extension_configs={
        "pymdownx.superfences": {
            "custom_fences": [
                {
                    'name': '*',
                    'class': 'highlight',
                    'validator': do_validate,
                    'format': do_format
                }
            ]
        }
    }
)

print(html)

Usage

See Quick Example for an example.

The superfence supports the following options:

show_lines

A comma separated list of line numbers or ranges of line numbers to show.

The line numbers are 1-based. If any line number is zero or negative, a warning is logged and the line or range are ignored.

If show_lines is omitted, it defaults to showing all lines.

Ranges

Ranges are inclusive and are defined as follows:

  • The ranges are specified as start:end, where start and end are the line numbers of the first and last lines to show, respectively.

  • If start is omitted, it defaults to the first line. If end is omitted, it defaults to the last line.

  • If start is greater than end, a warning is logged and the range is ignored.

  • If start is greater than the number of lines in the code block, the range is ignored.

  • If end is greater than the number of lines in the code block, it is set to the number of lines in the code block.

Contributing

If you want to know how to build this project and contribute to it, please check out the Contributing Guide.

pymdownx-superfence-filter-lines-python's People

Contributors

llucax avatar dependabot[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.