gpt4 book ai didi

node.js - 使用 prismjs 生成静态 html - 如何启用行号?

转载 作者:行者123 更新时间:2023-12-02 11:08:51 24 4
gpt4 key购买 nike

我使用 node.js 从代码生成静态 html 文件,并使用 prismjs 对其进行格式化。在我的应用程序中,我无法访问支持 Javascript 的 HTML 渲染器(我使用的是“htmllite”)。所以我需要能够生成不需要 Javascript 的 HTML。

const Prism = require('prismjs');
const loadLanguages = require('prismjs/components/');
loadLanguages(['csharp']);
const code = '<a bunch of C# code>';
const html = Prism.highlight(code, Prism.languages.csharp, 'csharp');

这很好用。但我想使用 line-numbers插件,但不知道如何使其工作。我的<pre>line-numbers类,我得到了更大的左边距,但没有行号。

最佳答案

PrismJS大多数插件需要 DOM 才能工作。看了plugins/line-numbers/prism-line-numbers.js#L109里面的代码后,我们可以看到行号只是 span元素为 class="line-numbers-rows"它包含一个空的 span对于每一行。我们可以在没有 DOM 的情况下通过使用与 prism-line-numbers 相同的正则表达式来模拟这种行为。用于获取行号,然后组成一个包含 span.line-numbers-rows 的 html 代码的字符串。并添加一个空字符串 <span></span>对于每一行。

Prism.highlight 仅运行 2 个钩子(Hook), before-tokenize after-tokenize 。我们将使用 after-tokenize 撰写lineNumbersWrapper包含 span.line-numbers-rows 的字符串元素和空 span线条元素:

const Prism = require('prismjs');
const loadLanguages = require('prismjs/components/');
loadLanguages(['csharp']);

const code = `Console.WriteLine();
Console.WriteLine("Demo: Prism line-numbers plugin with nodejs");`;

// https://github.com/PrismJS/prism/blob/master/plugins/line-numbers/prism-line-numbers.js#L109
var NEW_LINE_EXP = /\n(?!$)/g;
var lineNumbersWrapper;

Prism.hooks.add('after-tokenize', function (env) {
var match = env.code.match(NEW_LINE_EXP);
var linesNum = match ? match.length + 1 : 1;
var lines = new Array(linesNum + 1).join('<span></span>');

lineNumbersWrapper = `<span aria-hidden="true" class="line-numbers-rows">${lines}</span>`;
});

const formated = Prism.highlight(code, Prism.languages.csharp, 'csharp');
const html = formated + lineNumbersWrapper;

console.log(html);

这将输出:

Console<span class="token punctuation">.</span><span class="token function">WriteLine</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
Console<span class="token punctuation">.</span><span class="token function">WriteLine</span><span class="token punctuation">(</span><span class="token string">"Demo: Generate invalid numbers"</span><span class="token punctuation">)</span><span class="token punctuation">;</span><span aria-hidden="true" class="line-numbers-rows"><span></span><span></span></span>

其中有 span.line-numbers-rows最后:

<span aria-hidden="true" class="line-numbers-rows">
<span></span>
<span></span>
</span>

现在,如果我们在 pre.language-csharp.line-numbers code.language-csharp 中使用该输出元素,我们将得到正确的行号结果。检查这个Codepen只有 themes/prism.cssplugins/line-numbers/prism-line-numbers.css并使用上面输出的代码正确显示行号。

请注意,每一行(第一行除外)都必须是标记,以便代码正确显示,这是因为我们位于 pre.code 内。阻止,但我想你已经知道了。

更新

如果您不依赖 CSS 并且只想在每行之前添加一个行号,那么您可以通过拆分所有行并添加每个 index + 1 来添加一个行号。在开头使用空格填充 padStart :

const Prism = require('prismjs');
const loadLanguages = require('prismjs/components/');
loadLanguages(['csharp']);

const code = `Console.WriteLine();
Console.WriteLine("Demo: Prism line-numbers plugin with nodejs");`;

const formated = Prism.highlight(code, Prism.languages.csharp, 'csharp');

const html = formated
.split('\n')
.map((line, num) => `${(num + 1).toString().padStart(4, ' ')}. ${line}`)
.join('\n');

console.log(html);

将输出:

   1. Console<span class="token punctuation">.</span><span class="token function">WriteLine</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span>
2. Console<span class="token punctuation">.</span><span class="token function">WriteLine</span><span class="token punctuation">(</span><span class="token string">"Demo: Prism line-numbers plugin with nodejs"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

关于node.js - 使用 prismjs 生成静态 html - 如何启用行号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59508413/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com