How to set encoding in IntelliJ javadoc generating? -
while generating javadocs within intellij getting multiple errors files:
unmappable character encoding cp1251
file encodings utf-8
. found no places encoding control while javadoc generating.
you can pass options javadoc tool intellij idea. adding -encoding utf8 -docencoding utf8 -charset utf8
in other command line arguments text field should fix problem. -encoding
specifies encoding of source files. -docencoding
encoding of output html files , -charset
charset specified in html head section of output files.
Comments
Post a Comment