I generated some javadocs, looks pretty good, I can even include inline code samples/examples. However, doesn't look very good on mobile:
Here are the plugin settings I am using:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<additionalOptions>-html5</additionalOptions>
<additionalJOptions>--allow-script-in-comments</additionalJOptions>
</configuration>
</plugin>
maybe there is a command line flag I can use to generate mobile-friendly documentation? If not, how do I add a +1 to the plugin authors to encourage them to make the docs responsive somehow?