0

我正在使用 Markdown、google prettify 和 bootstrap 然后结果像这样在单行中出现

Create Proc log AS Begin Try Select 10 / 0 End Try Begin Catch EXEC LogErr End Catch

刚刚在捆绑我的 mvc 应用程序时注释掉了“~/Content/bootstrap.css”文件,结果是这样的

Create Proc log 
AS 
Begin Try 
   Select 10 / 0 
End Try 
Begin Catch 
   EXEC LogErr 
End Catch

我的整个应用程序是使用引导程序设计的,所以我无法删除这个 CSS,有没有办法将引导程序与谷歌美化和降价一起使用?

4

1 回答 1

0

我发现了问题,这是导致它的类

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

改成

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  /*white-space: pre-wrap;*/
  background-color: transparent;
  border-radius: 0;
}

空白:pre-wrap; 正在包装代码,可能它可以帮助某人。

于 2014-11-04T18:23:23.520 回答