HTML exporter
From AbiWiki
(Created page with 'HTML plugin allows Abiword users to export their documents to such file formats as HTML and XHTML. It supports several exportin goptions that customize contents of the generated …') |
|||
Line 2: | Line 2: | ||
=HTML plugin structure= | =HTML plugin structure= | ||
+ | To reduce dependencies between different parts of HTML plugin it`s functionality was split into several parts - Abiword document contents recognition( sections, blocks, etc) and translation into form, that is suitable to generate tags, tag generation, CSS generation and exporting data items. | ||
+ | ==Abiword document contents recognition and translation== |
Revision as of 03:24, 19 August 2011
HTML plugin allows Abiword users to export their documents to such file formats as HTML and XHTML. It supports several exportin goptions that customize contents of the generated document. Because this plugin is being developed for a long time and every it`s part become to tightly connected with each other(In fact generation of tags, css, saving images and listening to Abiword document contents were located in one big class called s_HTML_Listener), plugin`s code refactoring was done.
HTML plugin structure
To reduce dependencies between different parts of HTML plugin it`s functionality was split into several parts - Abiword document contents recognition( sections, blocks, etc) and translation into form, that is suitable to generate tags, tag generation, CSS generation and exporting data items.