Build static sites for paralex lexicons
Project description
This package is currently in beta. It is meant to render paralex lexicon files in mkdocs sites.
Installing
pip install mkdocs_paralex_plugin
Mkdocs
Create a configuration file for mkdocs, compatible with mkdocs-material.
It needs a special paralex
section, with minimally a paralex_package_path
(to the json file), lists of feature labels to use to separate tables, rows and columns. It can contain
site_name: "My site name"
docs_dir: docs
plugins:
- paralex:
paralex_package_path: "<name>.package.json"
layout_tables:
- mood
layout_rows:
- person/number
layout_columns:
- tense
repo_url: https://gitlab.com/<user>/<repo>
If your lexicon is massive, the generated site might exceed the free hosting capacity on gitlab or github. You can then add two more keys under the paralex section. If sample_size
is set, the corresponding number of lexemes will be selected, and the site will only show that sample. If frequency_sample
is set to true
, then the chosen lexemes will be the most frequent.
site_name: "My site name"
docs_dir: docs
plugins:
- paralex:
paralex_package_path: "<name>.package.json"
sample_size: 5000
frequency_sample: true
layout_tables:
- mood
layout_rows:
- person/number
layout_columns:
- tense
repo_url: https://gitlab.com/<user>/<repo>
Generating the site in a pipeline
To generate the site, add a pipeline file:
=== "gitlab pages"
With gitlab, create a plain text file called `.gitlab-ci.yml`, with the following content. The site will then be served at `https://<username>.gitlab.io/<repository-name>`. For more on gitlab pages, see [the gitlab pages docs](https://docs.gitlab.com/ee/user/project/pages/).
``` yaml title=".gitlab-ci.yml"
image: python:3.8
pages:
stage: deploy
script:
- mkdir -p docs/
- pip install pandas mkdocs>=1.1.2 mkdocs-material mkdocs_paralex_plugin
- mkdocs build -d public/ --strict --verbose
artifacts:
paths:
- public/
only:
- master
```
Project details
Release history Release notifications | RSS feed
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 mkdocs_paralex_plugin-0.1.3b0.tar.gz
.
File metadata
- Download URL: mkdocs_paralex_plugin-0.1.3b0.tar.gz
- Upload date:
- Size: 24.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 72a5ab18ae0fe810e5dce466604ee1a3e5fac3f45ebd8447a43eea467c8a7dfe |
|
MD5 | bcb56cea3b201089c2ae5c9a4c5339aa |
|
BLAKE2b-256 | b7658efd3e09c6b7517ecdaa7e9cf8c9fb2882fe9fcd3965fca86d97c9412bf8 |
File details
Details for the file mkdocs_paralex_plugin-0.1.3b0-py2.py3-none-any.whl
.
File metadata
- Download URL: mkdocs_paralex_plugin-0.1.3b0-py2.py3-none-any.whl
- Upload date:
- Size: 24.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bcb8480f9b5a1405b5dd5055e9289733ae7d895741d2326281933f34b9ec646 |
|
MD5 | d25c03fc09aefdbb239ce817ffe05654 |
|
BLAKE2b-256 | c754440396de4d2e10056167458a3a64352398149bf10181ee64bc24bcc735c8 |