如何在网页上显示格式正确的 JS 代码片段?

How to display properly formatted JS code snippets on a web page?

我正在数据库中存储一个 JavaScript 函数,没有空格。后来我从数据库中检索并使用 google 美化在网页上显示,但代码片段显示在一行中,

var Pizza = function(size, toppingCodes) {
  this.size = size;
  this.toppingCodes = toppingCodes;
  this.toString = function() {
    return "A " + size + " pizza with " + this.toppingCodes + ".";
  };
};
Pizza.prototype.getBaseCost = function() {
  switch (this.size) {
    case "small":
      return 6.50;
    case "medium":
      return 7.50;
    case "large":
      return 8.50;
  }
};

我正在使用 google 美化来获取关键字颜色等。 我可以用格式很好的方式显示上面的 JS 函数吗?我们有这个 tool/library 吗??

我终于明白了。保存到数据库时,我需要使用 encodeURI(string) 对其进行编码,而当从服务器取回时,我需要使用 decodeURI(string) 对其进行解码。