看起来很漂亮,看起来它可以格式化 cpp 请参见以下示例:您可以尝试将代码粘贴到此处并对其进行格式化(如果您不需要动态完成)。然后使用带有firebug插件的Firefox右键单击该元素,转到根目录并复制thml。也复制 css 文件(在 CSS 选项卡下,您可以找到它们)
<!DOCTYPE html>
<html>
<head>
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>Example</title>
</head>
<body>
<pre class="prettyprint lang-cpp">
int
foo(int k)
{
if (k < 1 || k > 2) {
printf("out of range\n");
printf("this function requires a value of 1 or 2\n");
} else {
printf("Switching\n");
switch (k) {
case 1:
printf("1\n");
break;
case 2:
printf("2\n");
break;
}
}
}
</pre>
</body>
</html>