- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 3,233 for anchor (0.06 seconds)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/FindMissingDocumentationFiles.java
} for (AdocFileEntry entry : entries) { for (String anchor : entry.anchors) { if (!EXCLUDED_ANCHORS.contains(anchor) && !allExistingAnchors.contains(anchor)) { missingAnchors.add("- The anchor '" + anchor + "' from file '" + entry.filename + "' (" + jsonFile.getName() + ") was not found in any documentation file."); }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Aug 21 15:38:58 GMT 2025 - 8.5K bytes - Click Count (0) -
scripts/tests/test_translation_fixer/test_markdown_links/data/en_doc.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Jan 10 21:48:08 GMT 2026 - 556 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
} } } /** * Extracts anchor URLs from the given object and converts them to RequestData objects. * The input object can be either a single string or a list of strings representing URLs. * * @param obj the object containing anchor URLs (String or List of Strings) * @return a set of RequestData objects for the anchor URLs, or null if no valid URLs found */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 11 09:47:03 GMT 2025 - 19.5K bytes - Click Count (0) -
scripts/general-llm-prompt.md
``` - Do not translate anchor fragments in links (the part after `#`), as they must remain the same to work correctly. - If an existing translation has a link with an anchor fragment different to the anchor fragment in the English source, then this is an error. Fix this by using the anchor fragment of the English source. Example: Source (English): ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Mar 18 10:55:36 GMT 2026 - 14.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/IndexExportJobTest.java
final Map<String, Object> source = new LinkedHashMap<>(); source.put("title", "Test"); source.put("anchor", Arrays.asList("http://a.com", "http://b.com")); final String json = new JsonIndexExportFormatter().format(source, Collections.emptySet()); assertTrue(json.contains("\"anchor\": [\"http://a.com\", \"http://b.com\"]")); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 09:08:38 GMT 2026 - 66.1K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java
Element link = h23element.selectFirst("a"); String anchor = (link != null) ? link.attr("id") : ""; if(!name.startsWith("Table") && tag.equals("h2")){ toc.append("<li class=\"mainTopic\"><a/></li>").children().last().select("a").first().text(name).attr("href", "#" + anchor); } else if(!name.startsWith("Table") && tag.equals("h3")){
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Mar 03 01:59:51 GMT 2026 - 11.3K bytes - Click Count (0) -
scripts/tests/test_translation_fixer/test_html_links/data/en_doc.md
### Header 3 { #header-3 } Another link: <a href="project-generation.md" class="internal-link" target="_blank" title="Link title">**FastAPI** Project Generators</a> with title. # Header 4 { #header-4 } Link to anchor: <a href="#header-2">Header 2</a> # Header with <a href="http://example.com">link</a> { #header-with-link }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Jan 10 21:48:08 GMT 2026 - 644 bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistActionTest.java
assertNotNull(extraFieldNames); // Config-defined field "anchor" is not in STANDARD_EDIT_FIELDS, so it appears as extra assertTrue(extraFieldNames.contains("anchor")); // Standard field "url" should not appear assertFalse(extraFieldNames.contains("url")); assertFalse(extraFieldNames.contains("title")); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 34.4K bytes - Click Count (0) -
docs/en/docs/js/custom.js
const href = a.getAttribute("href"); if (!href) return; try { const url = new URL(href, window.location.href); // Skip same-page anchor links (only the hash differs) if (url.origin === window.location.origin && url.pathname === window.location.pathname && url.search === window.location.search) return;
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 17:59:48 GMT 2026 - 7.7K bytes - Click Count (2) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.6K bytes - Click Count (0)