OPEN家园的编辑器加入可以插入各种源程序代码的功能

14年前
经过对UCHome编辑器的改造,现在发日志的编辑器已经支持插入各种源程序代码,并在显示日志的时候将源代码着色显示。点击工具栏中的“源”按纽,然后选择要插入的源代码语言,最后在输入框中输入代码或直接粘入代码。保存完之后,在查看日志时才会看到着色效果。
Java代码:
public class Installer implements InstallAction {        private InstallerContext context;        public int getPercentOfTotalInstallation() {          return 0;      }  }

JavaScript代码:
function helloSyntaxHighlighter()  {   return "hi!";  }  

PHP源代码:
$appKey = 'test';   $secretCode = 'test';      //组参函数  function createStrParam ($paramArr) {       $strParam = '';       foreach ($paramArr as $key => $val) {          if ($key != '' && $val !='') {              $strParam .= $key.'='.urlencode($val).'&';          }       }       return $strParam;   }