Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for formEncode (0.14 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/webapp/WEB-INF/fe.tld

      </function>
    
      <function>
        <description>Format a content as code.</description>
        <name>formatCode</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>java.lang.String formatCode(java.lang.String, java.lang.String, java.lang.String, java.lang.String)</function-signature>
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Jan 18 11:38:54 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

         * @param mimetype the MIME type of the content (currently unused)
         * @param input the code content to format
         * @return HTML formatted code with line numbers and styling
         */
        public static String formatCode(final String prefix, final String style, final String mimetype, final String input) {
            if (input == null) {
                return StringUtil.EMPTY;
            }
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 25.4K bytes
    - Click Count (1)
Back to Top