mirror of
https://github.com/yhl452493373/frpc-panel.git
synced 2026-04-04 06:17:00 +08:00
27 lines
750 B
HTML
27 lines
750 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
<link rel="stylesheet" href="../static/lib/codemirror/lib/codemirror.css">
|
|
<link rel="stylesheet" href="../static/lib/codemirror/theme/base16.css">
|
|
<script src="../static/lib/codemirror/lib/codemirror.js"></script>
|
|
<script src="../static/lib/codemirror/mode/properties/properties.js"></script>
|
|
</head>
|
|
<body>
|
|
<textarea id="code" name="code"></textarea>
|
|
<script>
|
|
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
|
|
lineNumbers: true,
|
|
mode: 'text/x-ini',
|
|
theme: 'base16'
|
|
});
|
|
editor.setValue(`
|
|
[HTTP:aaa.bbb.com]
|
|
a = 1
|
|
b = 2
|
|
`)
|
|
console.log(editor.getValue());
|
|
</script>
|
|
</body>
|
|
</html> |