Initial commit: WordPress wp-content (themes, plugins, languages)
- Theme: momentry (custom theme with REST API routes) - Plugins: code-snippets (contains all API proxies) - Languages: zh_TW translations - Excludes: cache, backups, uploads, logs
This commit is contained in:
21
plugins/code-snippets/js/editor.ts
Normal file
21
plugins/code-snippets/js/editor.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import { defineMode, getMode, registerHelper } from 'codemirror'
|
||||
import { Linter } from './utils/Linter'
|
||||
import type { EditorConfiguration, ModeSpec } from 'codemirror'
|
||||
|
||||
interface ModeSpecOptions {
|
||||
startOpen: boolean
|
||||
}
|
||||
|
||||
const mode: ModeSpec<ModeSpecOptions> = {
|
||||
name: 'application/x-httpd-php',
|
||||
startOpen: true
|
||||
}
|
||||
|
||||
defineMode('php-snippet', (config: EditorConfiguration) => getMode(config, mode))
|
||||
|
||||
registerHelper('lint', 'php', (text: string) => {
|
||||
const linter = new Linter(text)
|
||||
linter.lint()
|
||||
|
||||
return linter.annotations
|
||||
})
|
||||
Reference in New Issue
Block a user