| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- return [
- /*
- |--------------------------------------------------------------------------
- | Template Cache Settings
- |--------------------------------------------------------------------------
- */
- 'cache_enabled' => 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
- ];
|