Netbeans has Print in HTML - is there a way to add this feature to Eclipse?

I want to print some Ruby and Python syntax code, and Netbeans has a function in the File for HTML menu. I am wondering if there is a plugin or some add-on for Eclipse that allows you to use such a function, since this is my preferred development environment?

+3
source share
2 answers

You can install the Java2Html plugin , however it does not directly send it to the printer. Only to the clipboard or to the file (html or .doc, since it can apply these styles in RTF as well as CSS). Then you can print the result.

Plugin created for eclipse2.x.

I just tested it with eclipse 3.5Mx (last eclipse) ... and it works!

http://www.java2html.de/eclipse_preferences.png

+3
source

Another Eclipse plugin that exports java source code to html file with corresponding CSS styles, CS4Eclipse

This is later (2008), but less complex in its output format (without css files, only inline style) and a bit less laid back with annotations.

, Java- (CSS, , XML,... HTML )

eclipse 3.5Mx.

alt text http://sourceforge.net/dbimage.php?id=141548

+2

Source: https://habr.com/ru/post/1703215/


All Articles