معرفی شرکت ها


entangled-filters-0.8.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Set of Pandoc filters to aid in literate programming
ویژگی مقدار
سیستم عامل -
نام فایل entangled-filters-0.8.3
نام entangled-filters
نسخه کتابخانه 0.8.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Johan Hidding
ایمیل نویسنده j.hidding@esciencecenter.nl
آدرس صفحه اصلی https://entangled.github.io/
آدرس اینترنتی https://pypi.org/project/entangled-filters/
مجوز -
# Readme -- Entangled, Pandoc filters [![Test Badge](https://github.com/entangled/filters/workflows/Tests/badge.svg)](https://github.com/entangled/filters/actions?query=workflow%3ATests) [![codecov](https://codecov.io/gh/entangled/filters/branch/master/graph/badge.svg)](https://codecov.io/gh/entangled/filters) This contains several Pandoc filters and scripts for literate programming in Markdown. These filters are enough to get you going with literate programming using Pandoc. | Filter | Function | |----------------------------|--------------------------------------------------| |`pandoc-annotate-codeblocks`| Adds annotation to code blocks in the woven output. | |`pandoc-doctest` | Runs doc-tests by passing the content of code blocks through Jupyter. | |`pandoc-tangle` | Generate source files from the content of code blocks. | |`pandoc-bootstrap` | Expand some elements specifically targeting a Bootstrap page. | ## Install Entangled filters has the following prerequisites: - **Python >=3.7**: All of these filters are written in Python. This is mainly to encourage as many users (**I mean YOU**) to start developing Pandoc filters. - **Dhall**: the `pandoc-bootstrap` filter requires `dhall-to-json` to be installed: see [Dhall language](https://dhall-lang.org/). TLDR: download `dhall-json-*-[windows|macos|linux].[zip|tar.bz2]` from the [Dhall release page](https://github.com/dhall-lang/dhall-haskell/releases), and extract it to a location in your `$PATH`. Dhall is awesome, it *will* make your life better. Installation is easiest using `pip`, ```bash pip install entangled-filters ``` ### For development To run tests, after doing a normal install (to get the executables installed), run ```bash pip install --upgrade -e .[test] pytest ``` The executables are auto-generated by the `setup.py` script and call some `python -m` command. ## Supported syntax See the [project homepage](https://entangled.github.io) for more info. ### Named code blocks ~~~markdown ``` {.python #hello} print("Hello, World!") ``` ~~~ ### Reference code blocks ~~~markdown ``` {.python #main} def main(): <<hello>> ``` ~~~ ### Define files ~~~markdown ``` {.python file=hello.py} <<main>> if __name__ == "__main__": main() ``` ~~~ ### Documentation tests ~~~markdown ``` {.python .doctest #the-question} 6*7 --- 42 ``` ~~~ ## `pandoc-tangle` Extracts code blocks and writes them to files. ```shell pandoc -t plain --filter pandoc-tangle hello.md ``` ## `pandoc-annotate-codeblocks` Annotates code blocks in generated HTML or PDF output with name tags. ```shell pandoc -t html5 -s --filter pandoc-anotate-codeblocks hello.md ``` ## `pandoc-doctest` Runs doctests, and include results into output. Also annotates the code blocks (so no need to run `pandoc-annotate-codeblocks`). ```shell pandoc -t html5 -s --filter pandoc-doctest hello.md ``` ## `pandoc-bootstrap` Also annotates code blocks, and has two features: - Expand a Dhall specification into a card deck for Bootstrap, that is a flex-box with a single row and several columns of cards. This is nice to have at the top of a page to draw attention to some key points. - Collapsible/foldable code blocks. Add a `.bootstrap-fold` class to a code block to have the code block hidden behind a button. This is nice for some larger uninteresting code. This filter should be used together with a Bootstrap template for Pandoc. An example of its use can be seen here: [Chaotic Pendulum](https://jhidding.github.io/chaotic-pendulum), with the source code at [gh:jhidding/chaotic-pendulum](https://github.com/jhidding/chaotic-pendulum). ## Docker The Entangled pandoc filters is available as a [Docker image](https://hub.docker.com/repository/docker/nlesc/pandoc-tangle). ### Run In your current working directory with a README.md file run ``` docker run --rm -ti --user $UID -v $PWD:/data nlesc/pandoc-tangle README.md ``` This will extracts code blocks and writes them to files. ### Build ```shell docker build -t nlesc/pandoc-tangle . ```


نحوه نصب


نصب پکیج whl entangled-filters-0.8.3:

    pip install entangled-filters-0.8.3.whl


نصب پکیج tar.gz entangled-filters-0.8.3:

    pip install entangled-filters-0.8.3.tar.gz