env('TEMPLATE_CACHE_ENABLED', true), 'cache_ttl' => env('TEMPLATE_CACHE_TTL', 3600), /* |-------------------------------------------------------------------------- | Default Templates |-------------------------------------------------------------------------- */ 'default_templates' => [ 'note' => [ 'defaultParams' => ['text', 'type'], 'paramMapping' => [ '0' => 'text', '1' => 'type' ], 'defaultValues' => [ 'type' => 'info' ], 'validation' => [ 'required' => ['text'], 'optional' => ['type', 'title'] ] ], // 更多模板定义... ], /* |-------------------------------------------------------------------------- | Renderer Settings |-------------------------------------------------------------------------- */ 'supported_formats' => ['json', 'html', 'markdown', 'text'], /* |-------------------------------------------------------------------------- | Parser Settings |-------------------------------------------------------------------------- */ 'max_nesting_level' => 10, 'max_template_size' => 10000, // characters ];