Quick Start¶
This walkthrough uses the standard document build pipeline.
1. Create input.md¶
# Hello from Renderflow
This page was generated from a YAML spec.
2. Create renderflow.yaml¶
input: input.md
output_dir: dist
outputs:
- type: html
3. Build¶
renderflow build
Because renderflow.yaml is the default config filename, no extra flags are required.
4. View the output¶
Renderflow writes the result to dist/input.html.
- Open it in a browser, or
- inspect the generated file from the terminal.
Next steps¶
- Add
pdfordocxtooutputs - add
variablesand use{{key}}placeholders - add a
templatefor HTML output - add
transforms: transforms.yamlto unlock graph-based planning
Tip
You can preview the plan without writing files by running renderflow build --dry-run.