actuel-inactuel/site/plugins/code-editor/index.php

16 lines
370 B
PHP
Raw Normal View History

2025-02-18 10:16:52 +01:00
<?php
Kirby::plugin('sylvainjule/code-editor', [
'options' => array(
2025-02-18 10:16:52 +01:00
'language' => 'css',
'size' => 'small',
'lineNumbers' => true,
2025-02-18 10:16:52 +01:00
'tabSize' => 4,
'insertSpaces' => true,
'ignoreTabKey' => false,
),
'fields' => array(
2025-02-18 10:16:52 +01:00
'code-editor' => require_once __DIR__ . '/lib/fields/code-editor.php',
),
2025-02-18 10:16:52 +01:00
]);