[mod] static folders
This commit is contained in:
parent
bf3dd4d693
commit
f1fecbdee8
16 changed files with 12 additions and 14 deletions
|
|
@ -5,8 +5,8 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Codemirror6 example using BaseX LSP</title>
|
||||
<link rel="icon" type="image/png" href="favicon.png" />
|
||||
<link href="bootstrap@5.3.7.css" rel="stylesheet"
|
||||
<link rel="icon" type="image/png" href="../favicon.png" />
|
||||
<link href="../bootstrap@5.3.7.css" rel="stylesheet"
|
||||
integrity="sha384-LN+7fdVzj6u52u30Kp6M/trliBMCMKTyK833zpbD+pXdCLuTusPj697FH4R/5mcr" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="styles.css" />
|
||||
|
||||
|
|
@ -35486,7 +35486,8 @@ ${text}</tr>
|
|||
return plugin.docToHTML(value);
|
||||
}
|
||||
function renderCode(plugin, code) {
|
||||
let { language: language$1, value } = typeof code == "string" ? { language: null, value: code } : code;
|
||||
if (typeof code == "string") return plugin.docToHTML(code, "markdown")
|
||||
let {language, value} = code;
|
||||
let lang = plugin.client.config.highlightLanguage && plugin.client.config.highlightLanguage(language$1 || "");
|
||||
if (!lang) {
|
||||
let viewLang = plugin.view.state.facet(language);
|
||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Loading…
Add table
Add a link
Reference in a new issue