不确定是否有人遇到此事。我使用PrismJS语法高亮显示器突出显示代码。应用程序是用Reactjs编写的,我尝试做的是在WYSIWYG编辑器中,当用户想要插入代码块时,我用pre +代码包装用户选择的文本。 PrismJS似乎正如您所期望的那样正确地标记元素:
但正如您可以从上图中看到的那样,所有内容都放在一行中。而不是好的代码块:
我不确定在使用prismjs网站的css时出了什么问题:
code[class*="language-"],
pre[class*="language-"] {
color: black;
background: none;
text-shadow: 0 1px white;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection {
text-shadow: none;
background: #b3d4fc;
}
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
text-shadow: none;
background: #b3d4fc;
}
@media print {
code[class*="language-"],
pre[class*="language-"] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
background: #f5f2f0;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .1em;
border-radius: .3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #999;
}
.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #9a6e3a;
background: hsla(0, 0%, 100%, .5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
}
.token.function,
.token.class-name {
color: #dd4a68;
}
.token.regex,
.token.important,
.token.variable {
color: #e90;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
编辑:
答案 0 :(得分:1)
答案 1 :(得分:1)
手动初始化元素时,我遇到了类似的问题。我偶然发现了这个讨论,该讨论有一个对我有用的修复程序:https://github.com/PrismJS/prism/issues/1764
HTML-使用标志数据手动加载脚本:
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.20.0/prism.min.js" data-manual></script>
JS-添加以下挂钩:
Prism.hooks.add("before-highlight", function (env) {
env.code = env.element.innerText;
});
Prism.highlightElement(code);
答案 2 :(得分:0)
如果这对其他人有帮助,我有一个textarea
会在您键入时更新代码块,这对我有用:
<textarea onkeyup="this.onchange();" onchange="document.getElementById('query-highlighted').textContent = this.value; Prism.highlightAll();"></textarea>
<pre><code class="language-sql" id="query-highlighted"></code></pre>
也就是说,我使用.textContent =
代替了.innerText =
(后者没有按预期保留换行符)。
Sever van Snugg's answer和他所联系的issue帮助了我。
答案 3 :(得分:0)
我建议您激活 normalize whitespace 插件并设置 break-lines
属性,而不是像这样使用 white-space: pre-wrap
操作prism.css 文件:
Prism.plugins.NormalizeWhitespace.setDefaults({
'remove-trailing': true,
'remove-indent': true,
'left-trim': true,
'right-trim': true,
'break-lines': 60, //max number of characters in each line before break
});
我在我的博客中使用了上述方法,它很有魅力。当然,您可以根据自己的喜好调整 break-lines
值。
<br>
随意换行既然您在某个最大字符数后设置了 break-line
属性,您可能希望随意中断一些行以获得更清晰的代码。为此,您需要在要设置换行符的位置插入 <br>
标记。
如果您使用解析器将动态生成的 html 代码解析为字符串(例如来自数据库),并且 prims 未解析您的 <br>
标签,则您必须使用 before-sanity-check
像这样的棱镜钩:
Prism.hooks.add('before-sanity-check', function (env) {
env.element.innerHTML = env.element.innerHTML.replace(/<br>/g, '\n');
env.code = env.element.textContent;
});
在突出显示之前,上面的代码所做的是用 <br>
替换 \n
标签,因为 Prism 无法将 <br>
解析为换行符。