معرفی شرکت ها


foliantcontrib.superlinks-1.0.9


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Links to headings with extra magic
ویژگی مقدار
سیستم عامل -
نام فایل foliantcontrib.superlinks-1.0.9
نام foliantcontrib.superlinks
نسخه کتابخانه 1.0.9
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Daniil Minukhin
ایمیل نویسنده ddddsa@gmail.com
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/foliantcontrib.superlinks/
مجوز MIT
[![](https://img.shields.io/pypi/v/foliantcontrib.superlinks.svg)](https://pypi.org/project/foliantcontrib.superlinks/) [![](https://img.shields.io/github/v/tag/foliant-docs/foliantcontrib.superlinks.svg?label=GitHub)](https://github.com/foliant-docs/foliantcontrib.superlinks) # SuperLinks for Foliant This preprocessor extends the functionality of Markdown links, allowing you to reference by the heading title, file name or meta id. It works correctly with most backends, resolving to proper links, depending on which backend is being used. It adds the `<link>` tag. ## The Problem The problem with Markdown links is that you have to specify the correct anchor and file path right away. Let's imagine that you want to create a link to a heading which is defined in another chapter. If you are building a single-page PDF with Pandoc, you will only need to specify the anchor, which Pandoc generates from that title. But if you are building an MkDocs website, you will need to specify the relative filename to the referenced chapter, and the anchor, which MkDocs generates from the titles. By the way, Pandoc and MkDocs generate anchors differently. So there's no way to make it work for all backends by using just Markdown link syntax. Superlinks aim to solve this problem. ## Installation Install the preprocessor: ```bash $ pip install foliantcontrib.superlinks ``` ## Config To enable the preprocessor, add `superlink` to `preprocessors` section in the project config. ```yaml preprocessors: - superlinks ``` **Important:** SuperLinks preprocessor is very sensitive to its position in the preprocessors list. If you are using it in along with [Includes](https://foliant-docs.github.io/docs/preprocessors/includes/), [Anchors](https://foliant-docs.github.io/docs/preprocessors/anchors/) or [CustomIDs](https://foliant-docs.github.io/docs/preprocessors/customids/) preprocessor, the order in which they are mentioned must be following: ```yaml preprocessors: - includes # indludes must be defined BEFORE superlinks in the list - ... - superlinks - ... # following preprocessors must be defined AFTER superlinks in the list - anchors - customids ``` The preprocessor has no config options just now. But it has some important tag options. ## Usage To add a link, use a `link` tag with a combination of following parameters: `title` : Heading title, which you want to create a link to. `src` : Relative path to a chapter which is being referenced. `meta_id` : ID of the meta section which is being referenced. (if `title` is used, then this title MUST be inside this meta section) `anchor` : Name of the anchor defined by [Anchors](https://foliant-docs.github.io/docs/preprocessors/anchors/) preprocessor or an ID defined by [CustomIDs](https://foliant-docs.github.io/docs/preprocessors/customids/) preprocessor. If `src` or `meta` is not provided — the id will be searched globally. `id` : Just a hardcoded id. No magic here. The body of the `link` tag is your link caption. If the body is empty, SuperLinks will try to guess the right caption: - referenced title for links by title, - meta section title for links by meta section, - heading title for links by CustomIDs, - title from config or first heading title in the file for links to file, - anchor name for links by anchors. ## Examples **Reference a title in the same document** ```html <link title="My title">Link caption</link> ``` **Reference a title in another chapter** ```html <link src="subfolder/another_chapter.md" title="Another title">Link caption</link> ``` **Reference the beginning of another chapter** ```html <link src="subfolder/another_chapter.md">Link caption</link> ``` **Reference a title inside meta section** ```html <link meta_id="SECTION1" title="Title in section1">Link caption</link> ``` **Reference the beginning of meta section** ```html <link meta_id="SECTION1">Link caption</link> ``` **Reference an anchor and search for it globally** ```html <link anchor="my_anchor">Link caption</link> ``` **Reference an anchor and search for it in specific chapter** ```html <link src="subfolder/another_chapter.md" anchor="my_anchor">Link caption</link> ``` ## Supported Backends: Backend | Support ------- | ------- aglio | ✅ YES pandoc | ✅ YES mdtopdf | ✅ YES mkdocs | ✅ YES slate | ✅ YES confluence | ✅ YES


نیازمندی

مقدار نام
>=1.0.8 foliant
>=1.3.0 foliantcontrib.meta
>=1.0.4 foliantcontrib.anchors
>=1.0.2 foliantcontrib.utils


نحوه نصب


نصب پکیج whl foliantcontrib.superlinks-1.0.9:

    pip install foliantcontrib.superlinks-1.0.9.whl


نصب پکیج tar.gz foliantcontrib.superlinks-1.0.9:

    pip install foliantcontrib.superlinks-1.0.9.tar.gz