我将使用CKeditor在其中发布一些代码,但它不能保持stackoverflow中显示的原始代码格式,例如:
public void Test()
{
for (int i = 0; i < 100; i++)
{
System.IO.File.AppendAllText(@"c:\tmp\d.txt", $"a: {i}\n");
System.Threading.Thread.Sleep(1000);
}
}
但在ckeditor中它将显示如下:
public void Test(){for(int i = 0; i&lt; 100; i ++){System.IO.File.AppendAllText(@“c:\ tmp \ d.txt”,$“a:{i } \ n“); System.Threading.Thread.Sleep(1000); }}