Metadata-Version: 2.1
Name: mkdocs-vwmetahelper
Version: 0.1.0
Summary: MkDocs plugin providing get_meta() and call_macro() with lazy front-matter indexing.
Home-page: https://github.com/your-org/mkdocs-vwmetahelper
Author: Che Wei Chang & Contributors
License: MIT
Project-URL: Issues, https://github.com/your-org/mkdocs-vwmetahelper/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Framework :: MkDocs
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# mkdocs-vwmetahelper (classic setup.py)

A tiny MkDocs plugin that exposes:

- `get_meta(id)` — fetch another page's front matter (and computed URL) by `id`
- `call_macro(file, name, **kwargs)` — call a macro defined in a `*.j2` include file

## Build & publish
```bash
python -m pip install --upgrade build twine wheel setuptools
python setup.py sdist bdist_wheel
twine upload dist/*
```

## Usage
```yaml
plugins:
  - search
  - vwmetahelper:
      include_dir: docs/_includes
```


