golden hour
/home/godaofbq/oxyrevive.com/wp-content/plugins/code-snippets/js
⬆️ Go Up
Upload
File/Folder
Size
Actions
Edit
-
Del
OK
common
-
Del
OK
editor.ts
403 B
Del
OK
manage
-
Del
OK
mce.ts
2.69 KB
Del
OK
php-lint.ts
3.3 KB
Del
OK
prism.ts
868 B
Del
OK
settings
-
Del
OK
types
-
Del
OK
utils
-
Del
OK
Edit: editor.ts
import { defineMode, getMode, EditorConfiguration, ModeSpec } from 'codemirror' import './php-lint' type ModeSpecOptions = { startOpen: boolean } /** Define a new mode which starts the phpmixed mode in php mode instead of html mode */ defineMode('php-snippet', (config: EditorConfiguration) => getMode(config, <ModeSpec<ModeSpecOptions>> { name: 'application/x-httpd-php', startOpen: true }) )
Save