MuseScore/thirdparty/rtf2html
Casper Jeukendrup 136ff7b934 Fix compiler warnings in thirdparty/rtf2html/fmt_opts.h
Fixed warnings about deprecated implicit copy constructor, by removing unnecessary assignment operators.
2021-09-16 14:48:19 +02:00
..
CMakeLists.txt disabled warning for thridparty 2020-12-11 11:07:36 -06:00
COPYING.LESSER Initial commit 2012-05-26 14:49:10 +02:00
ChangeLog Initial commit 2012-05-26 14:49:10 +02:00
README Initial commit 2012-05-26 14:49:10 +02:00
README.mscore Initial commit 2012-05-26 14:49:10 +02:00
README.ru fix #65506: rtf2html/README.ru has the wrong encoding 2015-06-17 09:55:01 +02:00
common.h Initial commit 2012-05-26 14:49:10 +02:00
config.h experimental WASM build 2020-12-24 22:26:00 +02:00
dbg_iter.h Initial commit 2012-05-26 14:49:10 +02:00
fmt_opts.cpp sync with https://github.com/lvu/rtf2html 2019-10-16 09:17:49 +02:00
fmt_opts.h Fix compiler warnings in thirdparty/rtf2html/fmt_opts.h 2021-09-16 14:48:19 +02:00
rtf2html.cpp removed include all.h 2020-12-07 16:08:40 +03:00
rtf_keyword.cpp sync with https://github.com/lvu/rtf2html 2019-10-16 09:17:49 +02:00
rtf_keyword.h sync with https://github.com/lvu/rtf2html 2019-10-16 09:17:49 +02:00
rtf_table.cpp Replace deprecated function calls with lambdas 2019-10-16 09:20:06 +02:00
rtf_table.h Initial commit 2012-05-26 14:49:10 +02:00
rtf_tools.h sync with https://github.com/lvu/rtf2html 2019-10-16 09:17:49 +02:00

README

1.  Overview

    This is RTF to HTML converter version 0.1.0.
    Copyright (C) 2003 Valentin Lavrinenko, vlavrinenko@users.sourceforge.net
    
    Its primary purpose is using by developers to add rtf to html 
    converting functionality to their projects, although, end users 
    can also find it useful.

    The main effort was made on processing the tables correctly, and it
    seems successful - all other programs I've seen do tables processing
    much worse. Moreover, at the moment, I haven't seen any file that
    displays correctly in MS Word, but crashes this program.
    
    For further information, go to
    http://www.sourceforge.net/projects/rtf2html


2.  Copying

    Distributed under LGPL license - see COPYING.LESSER, it must be 
    in the archive.


3.  Compiling

    - Under UNIX:
      Just ./configure && make && make install. The program seems
      to work much (about 2 times) faster when compiled with STLPort
      STL implementation than with the GNU one. So, you may use
      --with-stlport configure option if you have it installed.

    - Under MS Windows:
      Use MSYS/MinGW, use it the same way as in UNIX.
      No makefiles for other Win compilers are included yet, so,
      write it yourself, if you want - it isn't that hard.
      BCC is no longer supported!

4.  Installation

    No binary distribution for Unix/Linux is provided - just
    compile the program from source (see above). You can, however,
    download a binary package for MS Windows from the project page,
    http://www.sf.net/projects/rtf2html.

5.  Usage

    5.1 Command-line options

        rtf2html -v|--version

	prints the current version.

	rtf2html -h|--help

	prints the help.
    
        rtf2html [<rtf file> [<html file>]].
    
        Converts the file. If either of files is not specified, 
	the corresponding std descriptor (stdin or stdout) is used.

    5.2 Supported features

        This version supports the following:
        - Character formatting: bold, italic, underline, sub- and superscripts.
         NOTE: underlining is displayed only as solid.
        - Paragraph formatting: horizontal alignment, indentation, margins.
        - Table formatting: arbitrary cell spans, cell sizings, borders, 
          vertical alignment in cells.
         NOTE: borders are displayed correctly only under IE 5+ and only 
               as solid.
        - Page formatting: page width, left margin.
        - Hexadecimal character codes (Cyrillic letters would come out in 
          win1251)
        - Font faces and sizes.
        - Foreground and background colors, highlighting.
    
    5.3 Unsupported features

        This version DOES NOT support the following:
	- Character sets.
	- Hyperlinks.
        - Images.
        - Different stuff like macros, embedded OLE objects, etc.


6.  Compiling notes.

    The source was compiled with 
    - gcc 3.3 under ALT Linux Master 2.4 on i386
    - gcc 3.4.2 (MinGW) under Win2k