- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否有任何解决方案可以得到类似 <cms:include type="OpenCmsString" element="text1" />
的内容? ?因为我的输出 <cms:include element="text1">
总是用 <p>
给我数据标签。
感谢任何善意的帮助。
最佳答案
我曾经为此创建过自己的标签(StripPTag)。您可以编译该类并将其包装在 jar 文件中,然后将其部署到您的 opencms webapp lib 文件夹。
package com.opencmsserver.taglib;
import org.opencms.flex.CmsFlexController;
import org.opencms.jsp.Messages;
import org.opencms.main.CmsLog;
import javax.servlet.ServletRequest;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.BodyTagSupport;
import org.apache.commons.logging.Log;
/**
* Removes the <p> tag from the surrounded content,
* because FCKEditor always add <p> tag to content at
* the beginning and end when using the html editor component
*
* @author Mathias Lin
*
* @version $Revision: 0.1 $
*
* @since 0.4
*/
public class StripPTag extends BodyTagSupport {
/** Serial version UID required for safe serialization. */
private static final long serialVersionUID = -2361021288258405388L;
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(StripPTag.class);
/**
* @see javax.servlet.jsp.tagext.Tag#doEndTag()
* @return EVAL_PAGE
* @throws JspException in case soemthing goes wrong
*/
public int doEndTag() throws JspException {
ServletRequest req = pageContext.getRequest();
// This will always be true if the page is called through OpenCms
if (CmsFlexController.isCmsRequest(req)) {
try {
// Get link-string from the body and reset body
String content = getBodyContent().getString();
content = content.replaceAll("<p>", "");
content = content.replaceAll("</p>", "");
getBodyContent().clear();
getBodyContent().print(content);
getBodyContent().writeOut(pageContext.getOut());
} catch (Exception ex) {
if (LOG.isErrorEnabled()) {
LOG.error("Failed using StripPTag. ", ex);
}
throw new JspException(ex);
}
}
return EVAL_PAGE;
}
}
和我自己的 opencmsserver.tld:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE taglib
PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
"http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
<taglib>
<tlib-version>0.1</tlib-version>
<jsp-version>1.2</jsp-version>
<short-name>opencmsserver</short-name>
<uri>http://www.opencmsserver.com/taglib/cms</uri>
<display-name>OpenCms JSP standard taglib</display-name>
<description>
Additional OpenCms Tags
Developed by SYSVISION Ltd. / Mathias Lin (info@opencmsserver.com)
</description>
<tag>
<name>stripPTag</name>
<tag-class>com.opencmsserver.taglib.StripPTag</tag-class>
<body-content>JSP</body-content>
<description>
This tag stripts the p-tag from the surrounded content.
</description>
</tag>
</taglib>
然后我在 web.xml 中引用它:
<!-- Begin: Custom SYSVISION OpenCmsServer lib -->
<taglib>
<taglib-uri>http://www.opencmsserver.com/taglib/opencmsserver</taglib-uri>
<taglib-location>/WEB-INF/opencmsserver.tld</taglib-location>
</taglib>
在你的jsp中,你只需将它包围起来:
<opencmsserver:stripPTag>Some content<p>with a paragraph</opencmsserver:stripPTag>
(并且不要忘记在 jsp header 部分引用此标记库)。
关于java - <cms :include without <p> tag,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6118725/
我们与一位客户存在某种问题,该客户认为我们发送的 XML 文件中的两个版本的空标记之间存在语义差异(纯 XML 没有 HTML ..)。 他们期望: 我们发送: 我
我想计算文本中 pp/np/vp 的数量,但我不知道如何在 openNLP chunker 中识别 PP-tags/NP-tags/VP-tags?我已经尝试过这段代码,但它不起作用。 Chunker
从我正在阅读的代码的上下文来看,它看起来像 $("")创建一个标签,其中 $('')是一个搜索标签的选择器。这里发生了什么?实际上,我可能没有掌握第二个语法,但我确信我已经完成了 $('idName'
我正在使用 Builder::XmlMarkup 创建 xml。我想创建一个没有内容的标签,因为 api 强制我创建它。如果我使用博客 xml.tag do end 我得到了我想要的 但我希望它更短
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Using the XHTML closing slash (/) on normal tags? Are
默认情况下, someXmlWriter.WriteElementString("my-tag", someString); 产生 我环顾四周XmlWriterSettings强制作者生成 的可能选
如何修改tag-it ui插件https://github.com/aehlke/tag-it (版本 v2.0)因此它只允许选择 x 个标签,以及如何仅允许“availableTags-option
我能够解析这样的内容: value 通过: File inputFile = new File("input.xml"); DocumentBuilderFactory dbFactory = Doc
我不太确定如何编写这个查询,它可以在一个查询中完成。案例如下: 我需要选择标签名称列表,并为每个标签获取最近标记的专辑信息。这意味着,如果用户创建名为“Pamela Anderson”的专辑并将该专辑
这个问题在这里已经有了答案: Where should I put tags in HTML markup? (21 个回答) JavaScript at bottom/top of web pa
Django 2 by Example 中的教程,我不明白: step (2): Why is `Count('tags')` **not** counting the total number of
我是 jekyll 的新手,正在构建我的网站。 我有一个“帖子”布局,我希望与帖子相关的所有标签都出现在左栏中。我遇到的问题是,使用 {{ page.tags }} 会返回一个未以逗号分隔且看起来很乱
如何将一个目录下的所有hash tag重写为slash tag? ( Apache ) http://www.domain.com/company/index#about => http://www.
在查询 Flickr API 并检查返回的标签时,我注意到我收到了未在 Web 界面上显示的其他标签。例如对于此图像: http://www.flickr.com/photos/77060598@N0
我有类似 的东西我想得到这个: <1> <2> 但我只想在 中应用它标签而不是其他任何地方。 我已经有了这个: $txt = $this->input->post('
我想删除 xxx yyyy zzz 用 php。但是,首先,我想控制字符串是否以 开头并以 结尾 是否有用于此目的的函数? if(string begins with '' and ends wi
在我的模板中加载自定义标签时出现此错误。我访问了许多关于此的主题,并且确保确认我没有犯一些常见错误: 包含标签的文件在 templatetags 中文件夹。 此 templatetags文件夹包含 _
API doc中没有关于构造函数的文档。我想了解SvgElement.tag()的用途/用例。 最佳答案 SvgElement.tag(String tag)构造函数为对应的SvgElement值创建
$('*').data('tag', "tagged"); $('li[tag=tagged]').length 返回零... 最佳答案 $('*').data('tag', "tagged"); $
下面的代码出错了。我该如何解决这个问题? {% block header %} {% endblock %} 错误输出: TemplateSyntaxError : Invalid bloc
我是一名优秀的程序员,十分优秀!