Include content from other files using the @import directive.
<!-- @import("path/to/file.md") -->
The directive is replaced with the contents of the referenced file during build.
Include a shared header:
<!-- @import("shared/header.md") -->
Include a code file:
<!-- @import("examples/config.json") -->
Imported files can contain their own @import directives. guidebook handles these recursively and detects circular imports to prevent infinite loops.
Paths are relative to the file containing the @import directive.