Markdown Processor
Purpose
Converts Markdown files to HTML using the markdown Perl script.
How It Works
Discovers .md files in the project and runs markdown on each file,
producing an HTML output file.
Source Files
- Input:
**/*.md - Output:
out/markdown/{relative_path}.html
Configuration
[processor.markdown]
markdown_bin = "markdown" # The markdown command to run
args = [] # Additional arguments to pass to markdown
output_dir = "out/markdown" # Output directory
extra_inputs = [] # Additional files that trigger rebuilds when changed
| Key | Type | Default | Description |
|---|---|---|---|
markdown_bin | string | "markdown" | The markdown executable to run |
args | string[] | [] | Extra arguments passed to markdown |
output_dir | string | "out/markdown" | Output directory for HTML files |
extra_inputs | string[] | [] | Extra files whose changes trigger rebuilds |