All checks were successful
Deploy / Deploy to Production (push) Successful in 5m22s
- Renommage dossier content 3_play → 3_jouer (slug /jouer) - Champ backgroundColor (code-editor) dans game.yml + exposé en API - playLinks simplifié en champ url simple → playLink dans l'API - Variable CSS --background-color sur la section .play - Bouton "Jouer" avec icône play-icon (SVG data URI dans buttons.css) - Plugin sylvainjule/code-editor ajouté via composer Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
370 B
PHP
15 lines
370 B
PHP
<?php
|
|
|
|
Kirby::plugin('sylvainjule/code-editor', [
|
|
'options' => array(
|
|
'language' => 'css',
|
|
'size' => 'small',
|
|
'lineNumbers' => true,
|
|
'tabSize' => 4,
|
|
'insertSpaces' => true,
|
|
'ignoreTabKey' => false,
|
|
),
|
|
'fields' => array(
|
|
'code-editor' => require_once __DIR__ . '/lib/fields/code-editor.php',
|
|
),
|
|
]);
|