Extension for Foliant documentation tool which generatesalternative chapters structure.
Project description
AltStructure Extension
AltStructure is a config extension for Foliant to generate alternative chapter structure based on metadata.
It adds an alt_structure
preprocessor and resolves !alt_structure
YAML tags in the project config.
Installation
$ pip install foliantcontrib.alt_structure
Configuration
Config extension
Options for AltStructure are specified in the alt_structure
section at the root of Foliant config file:
alt_structure:
structure:
topic:
entity:
additional:
add_unmatched_to_root: false
registry:
auth: Аутентификация и авторизация
weather: Погода
test_case: Тест кейсы
spec: Спецификации
structure
: (required) A mapping tree, representing alternative structure.
add_unmatched_to_root
: if true
, all chapters that weren't matched to structure in metadata will be added to root of the chapter tree. If false
— they will be ignored. Default: false
registry
: A dictionary which defines aliases for chapter tree categories.
Preprocessor
Preprocessor has just one option:
preprocessors:
- alt_structure:
create_subfolders: true
create_subfolders
: If true
, preprocessor will create a full copy of the working_dir and add it to the beginning of all filepaths in the generated structure. If false
— preprocessor doesn't do anything. Default: true
Usage
Step 1
Add !alt_structure
tag to your chapters in the place where you expect new structure to be generated. It accepts one argument: list of chapters, which will be scanned.
chapters:
- basic: # <-- this is _chapter tree category_
- auth/auth.md
- index.md
- auth/test_auth.md
- auth/test_auth_aux.md
- weather.md
- glossary.md
- auth/spec_auth.md
- test_weather.md
- Alternative: !alt_structure
- auth/auth.md
- index.md
- auth/test_auth.md
- auth/test_auth_aux.md
- weather.md
- glossary.md
- auth/spec_auth.md
- test_weather.md
AltStructure extension introduces a lot of new notions, so let's agree on some terms to make sure we are on the same page. Chapter tree category is a mapping with single key which you add to your chapter list to create hierarchy.
basic:
andAlternative:
are categories in this example.
You can also utilize YAML anchors and aliases, but in this case, because of language limitation you need to supply alias inside a list. Let's use it to get the same result as the above, but in a more compact way:
chapters:
- basic: &basic
- auth/auth.md
- index.md
- auth/test_auth.md
- auth/test_auth_aux.md
- weather.md
- glossary.md
- auth/spec_auth.md
- test_weather.md
- Alternative: !alt_structure [*basic]
Step 2
Next you need to define the structure in structure
parameter of extension config. It is defined by a mapping tree of node types. For example:
alt_structure:
structure:
topic: # topic is the upmost node type
entity: # nodes with type "entity" will be nested in "topic"
additional:
glossaries:
These names of the node types are arbitrary, you can use any words you like except root
and subfolder
.
Step 3
Open your source md-files and edit their main meta sections. Main meta section is a section, defined before the first heading in the document (check metadata documentation for more info). Add a mapping with nodes for this chapter under the key structure
.
file auth_spec.md
---
structure:
topic: auth # <-- node type: node name
entity: spec
---
# Specification for authorization
Here topic
and entity
are node types, which are part of our structure (step 2). auth
and spec
are node names. After applying !alt_structure
tag nodes will be converted into chapter tree categories. Node type defines the level of the category and node name defines the caption of the category.
We've added two nodes to the structure
field of chapter metadata: topic: auth
and entity: spec
. In the structure that we've defined on step 2 the topic
goes first and entity
— second. So after applying the tag, this chapter will appear in config like this:
- auth:
- spec:
- auth_spec.md
If we'd stated only topic
key in metadata, then it would look like this:
- auth:
- auth_spec.md
Step 4
Now let's fill up registry. We used spec
and auth
in our metadata for node names, but these words don't look pretty in the documents. Registry allows us to set verbose captions for node names in config:
alt_structure:
structure:
- ['topic', 'entity']
- 'additional/glossaries'
registry:
auth: Authentication and Authorization
spec: Specifications
With such registry now our new structure will look like this:
- Authentication and Authorization:
- Specifications:
- auth_spec.md
Special node types
In the step 2 of the user guide above we've mentioned that you may choose any node names in the structure except root
and subfolder
. These are special note types and here's how you can use them.
root
For example, if our structure looks like this:
alt_structure:
structure:
topic:
entity:
and our chapter's metadata looks like this:
---
structure:
foo: bar
---
The node foo: bar
is not part of the structure, so applying the !alt_structure
tag it will just be ignored (unless add_unmatched_to_root
is set to true
in config). But what if you want to add it to the root of your chapter tree?
To do that — add the root
node to your metadata:
---
structure:
foo: bar
root: true # the value of the key `root` is ignored, we use `true` for clarity
---
subfolder
By defining subfolder
node in chapter's metadata you can manually add another chapter tree category to any chapter.
For example:
file auth_spec.md
---
structure:
topic: auth
entity: spec
subfolder: Main specifications
---
After applying tag the new structure will look like this:
- auth:
- spec:
- Main specifications:
- auth_spec.md
Using preprocessor
By default the !alt_structure
tag only affects the chapters
section of your foliant.yml. This may lead to situation when the same file is mentioned several times in the chapters
section. While most backends are fine with that — they will just publish the file two times, MkDocs does not handle this situation well.
That's where you will need to add the preprocessor alt_structure
to your preprocessors list. Preprocessor creates a subfolder in the working_dir and copies the entier working_dir contents into it. Then it inserts the subfolder name into the beginning of all chapters paths in the alternative structure.
Important: It is recommended to add this preprocessor to the end of the preprocessors list.
preprocessors:
...
alt_structure:
create_subfolders: true
Note, that the parameter create_subfolders
is not necessary, it is true
by default. But we recommend to state it anyway for clarity.
After applying the tag, your new structure will now look like this:
- Authentication and Authorization:
- Specifications:
- alt1/auth_spec.md
The contents of the working_dir were copied into a subdir alt1
, and new structure refers to the files in this subdir.
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
Built Distribution
File details
Details for the file foliantcontrib.alt_structure-0.2.1.tar.gz
.
File metadata
- Download URL: foliantcontrib.alt_structure-0.2.1.tar.gz
- Upload date:
- Size: 12.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2f35d15a01abe2d30d5c3da5551b46270773772155828e2974dea32df4246747 |
|
MD5 | 33e98752be1b94242461d5865c526b46 |
|
BLAKE2b-256 | dbf03a0eb30437bada9cb68423ba82a4ef2de5ff8a87b9ebea980da781c71f23 |
File details
Details for the file foliantcontrib.alt_structure-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: foliantcontrib.alt_structure-0.2.1-py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84da4ba82028b4a5214ec4ae5f6067b898aa121f2728803ee62afc35f7975968 |
|
MD5 | c54fae4ae98cdf6be3256f57d0935db0 |
|
BLAKE2b-256 | 7b9e6ad8fe5f90132ba8f697732db4aa33ca75c94f6a55c0a92bb808869a274e |