⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.13
Server IP:
109.199.105.153
Server:
Linux connect.inboxifs.com 5.15.0-152-generic #162-Ubuntu SMP Wed Jul 23 09:48:42 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
libjs-codemirror
/
examples
/
View File Name :
closetag.html
<!doctype html> <title>CodeMirror: Close-Tag Demo</title> <meta charset="utf-8"/> <link rel=stylesheet href="../html/docs.css"> <link rel="stylesheet" href="/usr/share/javascript/codemirror/lib/codemirror.css"> <script src="/usr/share/javascript/codemirror/lib/codemirror.js"></script> <script src="/usr/share/javascript/codemirror/addon/edit/closetag.js"></script> <script src="/usr/share/javascript/codemirror/addon/fold/xml-fold.js"></script> <script src="/usr/share/javascript/codemirror/mode/xml/xml.js"></script> <script src="/usr/share/javascript/codemirror/mode/javascript/javascript.js"></script> <script src="/usr/share/javascript/codemirror/mode/css/css.js"></script> <script src="/usr/share/javascript/codemirror/mode/htmlmixed/htmlmixed.js"></script> <style> .CodeMirror {border-top: 1px solid #888; border-bottom: 1px solid #888;} </style> <div id=nav> <a href="https://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../html/logo.png"></a> <ul> <li><a href="../index.html">Home</a> <li><a href="../html/manual.html">Manual</a> <li><a href="https://github.com/codemirror/codemirror">Code</a> </ul> <ul> <li><a class=active href="#">Close-Tag</a> </ul> </div> <article> <h2>Close-Tag Demo</h2> <form><textarea id="code" name="code"><html</textarea></form> <script> var editor = CodeMirror.fromTextArea(document.getElementById("code"), { mode: 'text/html', autoCloseTags: true }); </script> <p>Uses the <a href="https://codemirror.net/doc/manual.html#addon_closetag">closetag</a> addon to auto-close tags.</p> </article>