嗨,有人可以帮助我了解堆栈溢出问题的代码区域是如何工作的(技术上)。
我的意思是它在缩进文本时格式化文本的方式。
示例:不带缩进
example: with indentation ( text background color and font has changed)
有人可以解释一下这背后的技术吗?我是编程新手,这很难实现吗?我们如何根据文本的缩进实现这种格式。
一种方法是循环遍历字符串中的每一行文本,并按缩进级别将它们分组为多个部分:
var leadingSpaces = /^s*/;
blockOfText = blockOfText.replace(/t/g, ' '); // replace tabs with 4 spaces
var lines = blockOfText.split('n');
var sections = [];
var currentIndentLevel = null;
var currentSection = null;
lines.forEach(function(line) {
var indentLevel = leadingSpaces.exec(line)[0].length;
if (indentLevel !== currentIndentLevel) {
currentIndentLevel = indentLevel;
currentSection = { indentLevel: currentIndentLevel, lines: [] };
sections.push(currentSection);
}
currentSection.lines.push(line);
});
然后,一旦你有了这些部分,你就可以循环浏览它们:
sections.forEach(function(section) {
switch (section.indentLevel) {
case 4:
// format as code
break;
// etc.
default:
// format as markdown
break;
}
});