Allow long lines in javadoc comments, e.g. for <A href="...">
diff --git a/checkstyle.xml b/checkstyle.xml
index efc00c8..507151a 100644
--- a/checkstyle.xml
+++ b/checkstyle.xml
@@ -65,6 +65,8 @@
       <property name="option" value="eol" />
     </module>
     <module name="LineLength">
+      <!-- Ignore lines that begin with " * ", such as within a Javadoc comment. -->
+      <property name="ignorePattern" value="^ *\* *[^ ]"/>
       <property name="max" value="120"/>
     </module>
   </module>