- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for tagname (0.32 sec)
-
src/main/java/org/codelibs/fess/util/PrunedTag.java
} /** * Parses a comma-separated string of pruned tag configurations into an array of PrunedTag objects. * Each tag configuration follows the pattern: tagname[attr=value].classname#id * * Examples: * - "div.content" matches div elements with class "content" * - "span#header" matches span elements with ID "header"Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 04:23:08 UTC 2025 - 7.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
* * @param tagName the HTML tag name * @param attrName the attribute name to extract URLs from */ public void addChildUrlRule(final String tagName, final String attrName) { if (StringUtil.isNotBlank(tagName) && StringUtil.isNotBlank(attrName)) { childUrlRuleMap.put(tagName, attrName); } } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 29 07:42:33 UTC 2025 - 30.5K bytes - Viewed (0)