其实增加一下 很简单的 需要学一下 laravel框架的使用,修改一下模板,很容易就集成其他编辑器了。
www.noxue.com 这是我集成百度 ueditor的效果
就引入一下几个ueditor的js和css文件 初始化一下编辑器,把以前编辑器的代码删除。
麻烦的地方在于 上传图片和代码过滤部分,tipask使用的过滤函数会过滤一些多余的属性和标签,需要自己修改一下配置信息。
public static int GetAge(DateTime birthDate) { DateTime n = DateTime.Now; // To avoid a race condition around midnight int age = n.Year - birthDate.Year; if (n.Month < birthDate.Month || (n.Month == birthDate.Month && n.Day < birthDate.Day)) age--; return age; }
上面是代码,
请问如何让它可以格式化显示?谢谢。