LifeRay 和语法突出显示/代码美化/代码格式化
我正在尝试使用 LifeRay 作为内部知识库,其中大部分内容将是代码/sql 片段。
在代码着色/格式化等方面可以做什么...是否有 LifeRay 插件可以添加这种功能?我做了一些搜索,但找不到任何东西。
例如: http://alexgorbatchev.com/SyntaxHighlighter/
谢谢。
I'm experimenting with LifeRay as an internal knowledge base, and a chunk of that content would be code/sql snippets.
What can be done in the area of code coloring / formatting, etc... is there a LifeRay plugin that adds this kind of capability? I did some searching and couldn't find anything.
E.g.:
http://alexgorbatchev.com/SyntaxHighlighter/
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Liferay 可以配置为使用多个编辑器,例如 TinyMCE 或 CKEditor。此配置通常通过在主 Portal-ext.properties 文件中设置属性来完成,该文件扩展了嵌入式 Portal.properties :
它可用于创建一个新的 jsp,专门设计用于允许激活专用语法编辑器。
Liferay 使用 CodePress 作为一些配置的 XML 编辑器,这可能是一个好的开始:看看
liferay-portal-6.1.0/tomcat-6.0.29/webapps/ROOT/html/js/editor/codepress/index.html 作为开始。
阿尔诺
Liferay can be configured to use several editors, such as TinyMCE or CKEditor. This configuration is usually done by setting properties in the main portal-ext.properties file, that extends the embedded portal.properties :
It can be used to create a new jsp especially designed to allow the activation of a dedicated syntax editor.
Liferay uses CodePress as a XML editor for some of its configuration, that could be a good start : look at
liferay-portal-6.1.0/tomcat-6.0.29/webapps/ROOT/html/js/editor/codepress/index.html as a start.
Arnaud