Мне нужно получить XPath тега xml из текстового редактора codemirror. Ниже моя конфигурация codemirror.
var editor = CodeMirror.fromTextArea(document.getElementById("TextArea1"), {
mode: "xml",
lineNumbers: true,
lineWrapping: true,
matchBrackets: true,
autoCloseTags: false,
foldGutter: true,
gutters: ["CodeMirror-linenumbers", "CodeMirror-foldgutter"],
extraKeys: {
"Enter": completeAfter,
//"'/'": completeIfAfterLt,
"' '": completeIfInTag,
//"'='": completeIfInTag,
//"Ctrl-Space": "autocomplete",
"Shift-Tab": "autoFormatSelection",
},
matchTags: { bothTags: true },
//hintOptions: {
// schemaInfo: tags
//}
}