Some checks failed
Deploy Docs / deploy (push) Failing after 24s
- New package _extensions/wikilinks.py: preprocessor that converts [[Page Name]], [[Page|Text]], [[Page#anchor|Text]], and ![[img]] to standard Markdown links before parsing - Skips wiki links inside fenced/inline code blocks - Slugifies targets: lowercase, spaces→hyphens - Registered as markdown extension in zensical.toml - Updated CI workflow to pip install -e . for the _extensions package - First usage: [[docs/contributing/index]] in markdown.md
19 lines
339 B
TOML
19 lines
339 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "up"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = []
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["_extensions"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"zensical>=0.0.43",
|
|
]
|