<target name="_docsLintOption" unless="doclint.options">
<!-- syntax check is disabled because JCite tag name "@.jcite" is invalidated -->
- <condition property="doclint.option" value="-Xdoclint:all,-accessibility,-syntax" else="">
+ <condition property="doclint.option" value="-Xdoclint:reference,html" else="">
<isset property="is.java8.plus"/>
</condition>
</target>
* <li>{Logical LTR, Visual RTL},</li>\r
* <li>{Visual RTL, Logical RTL}.</li>\r
* </ul>\r
- * <p>Example of usage of the transformation engine:<br>\r
+ * <p>Example of usage of the transformation engine:</p>\r
* <pre>\r
* BidiTransform bidiTransform = new BidiTransform();\r
* String in = "abc \u06f0123"; // "abc \\u06f0123"\r
* ArabicShaping.DIGITS_EN2AN | ArabicShaping.DIGIT_TYPE_AN_EXTENDED);\r
* // Result: "abc \\u06f4\\u06f1\\u06f2\\u06f3"\r
* </pre>\r
- * </p>\r
*\r
* @param text An input character sequence that the Bidi layout\r
* transformations will be performed on.\r
/**
* Sets the character used for zero.
* <p>
- * <b>Note:</p> When the specified zeroDigit is a Unicode decimal digit character
+ * <b>Note:</b> When the specified zeroDigit is a Unicode decimal digit character
* (category:Nd) and the number value is 0, then this method propagate digit 1 to
* digit 9 by incrementing code point one by one.
*
* shown below:
*
* <pre>
- * <code>
* // Setup:
* String[] DICTIONARY = new String[]{ "lorem", "ipsum" }; // example
* SpoofChecker sc = new SpoofChecker.Builder().setChecks(SpoofChecker.CONFUSABLE).build();
* // Live Check:
* boolean result = skeletons.contains(sc.getSkeleton("1orern"));
* System.out.println(result); // true
- * </code>
* </pre>
*
* <p>
* The following snippet shows a minimal example of using <code>SpoofChecker</code> to perform spoof detection on a
* string:
*
- * <code>
* <pre>
* SpoofChecker sc = new SpoofChecker.Builder()
* .setAllowedChars(SpoofChecker.RECOMMENDED.cloneAsThawed().addAll(SpoofChecker.INCLUSION))
* boolean result = sc.failsChecks("pаypаl"); // with Cyrillic 'а' characters
* System.out.println(result); // true
* </pre>
- * </code>
*
* <p>
* As in the case for confusability checking, it is good practice to create one <code>SpoofChecker</code> instance at