This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.
pubconstCopyDirectoryOptions = struct {
/// File paths that end in any of these suffixes will be excluded from copying.exclude_extensions: []const []constu8 = &.{},
/// Only file paths that end in any of these suffixes will be included in copying./// `null` means that all suffixes will be included./// `exclude_extensions` takes precedence over `include_extensions`.include_extensions: ?[]const []constu8 = null,
}