LifeRay 和语法突出显示/代码美化/代码格式化

发布于 2024-10-29 03:57:14 字数 262 浏览 4 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

策马西风 2024-11-05 03:57:14

Liferay 可以配置为使用多个编辑器,例如 TinyMCE 或 CKEditor。此配置通常通过在主 Portal-ext.properties 文件中设置属性来完成,该文件扩展了嵌入式 Portal.properties :

    # You can configure individual JSP pages to use a specific implementation of
    # the available WYSIWYG editors: ckeditor, ckeditor_bbcode, ckeditor_creole,
    # fckeditor, liferay, simple, tinymce, or tinymce_simple.
    #
    editor.wysiwyg.default=ckeditor
    (...)
    editor.wysiwyg.portal-web.docroot.html.portlet.journal.edit_article_content.jsp=ckeditor

它可用于创建一个新的 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 :

    # You can configure individual JSP pages to use a specific implementation of
    # the available WYSIWYG editors: ckeditor, ckeditor_bbcode, ckeditor_creole,
    # fckeditor, liferay, simple, tinymce, or tinymce_simple.
    #
    editor.wysiwyg.default=ckeditor
    (...)
    editor.wysiwyg.portal-web.docroot.html.portlet.journal.edit_article_content.jsp=ckeditor

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文