Rich Text Format

Rich Text Format
Filename extension .rtf
Internet media type text/rtf[1]
application/rtf[2]
Type code 'RTF.'[3][4][5]
Uniform Type Identifier (UTI) public.rtf
Magic number {\rtf
Developed by Microsoft
Initial release 1987
Latest release
1.9.1
(19 March 2008 (2008-03-19))
Type of format Document file format
Open format? No

The Rich Text Format (often abbreviated RTF) is a proprietary[6][7][8] document file format with published specification developed by Microsoft Corporation from 1987 until 2008 for cross-platform document interchange with Microsoft products.

Most word processors are able to read and write some versions of RTF.[9] There are several different revisions of RTF specification and portability of files will depend on what version of RTF is being used.[7][10] RTF specifications were changed and published with major Microsoft Word and Office versions.

It should not be confused with enriched text (media type "text/enriched" of RFC 1896) or its predecessor Rich Text (media type "text/richtext" of RFC 1341 and 1521); nor with IBM's RFT-DCA (Revisable Format Text-Document Content Architecture) which are completely different specifications.

History

Richard Brodie, Charles Simonyi, and David Luebbert, members of the Microsoft Word development team, developed the original RTF in the middle to late 1980s. Its syntax was influenced by the TeX typesetting language. The first RTF reader and writer shipped in 1987 as part of Microsoft Word 3.0 for Macintosh, which implemented the RTF version 1.0 specification. All subsequent releases of Microsoft Word for the Macintosh and all versions for Windows can read and write files in RTF format.

Microsoft maintains the format. The final version was 1.9.1 in 2008, implementing features of Office 2007. Microsoft has discontinued enhancements to the RTF specification. New features in Word 2010 and later versions will not save properly to the RTF format.[11] Microsoft anticipates no further updates to RTF, but has stated willingness to consider editorial and other non-substantive modifications of the RTF Specification during an associated ISO/IEC 29500 balloting period.[12]

For some time, RTF files were used to produce Windows .HLP help files, though this use has been superseded by Microsoft Compiled HTML Help files.

RTF specifications for Microsoft Word[13][14]
RTF version Publication date Microsoft Word version MS Word release date Notes
1.0 1987 Microsoft Word 3 1987 latest revision 6/92;[15][16] the 1992 revision defines support for Microsoft Object Linking and Embedding (OLE) objects and Macintosh Edition Manager subscriber objects; supported inclusion of WMF, PICT, Windows Device-dependent bitmap, Windows Device Independent bitmap and OS/2 Metafile picture types in a RTF file
1.1 Microsoft Word 4 1989 font embedding - font data may be located inside the file
1.2 1993 Microsoft Word 5 1991 [17][18]
1.3 January 1994 Microsoft Word 6 1993 1/94 GC0165; discouraged use of Windows Device-independent bitmaps and Windows Device-dependent bitmaps for device-independence and interoperability. Rather, bitmaps should be embedded within Windows Metafiles[19][20]
1.4 September 1995 Microsoft Word 95/Word 7 1995 [21]
1.5 April 1997 Microsoft Word 97/Word 8 1997 Unicode RTF - supports 16-bit Unicode character encoding scheme; defined inclusion of PNG, JPEG and EMF picture types in hexadecimal (the default) or binary format in a RTF file[22] Also contains a Japanese local RTF specification for the Japanese version of Word, called RTF-J, that is somewhat different from the standard RTF specification.[22]
1.6 May 1999 Microsoft Word 2000/Word 9 1999 Also includes Pocket Word and Exchange (used in RTF-HTML conversions).[3]
1.7 August 2001 Microsoft Word 2002/Word 10 2001 8/2001– Word 2002 RTF Specification[23][23][24]
1.8 April 2004 Microsoft Word 2003/Word 11 2003 10/2003– Word 2003 RTF Specification[4]
1.9.1 19. March 2008
(RTF 1.9 - published in January 2007)[25]
Microsoft Word 2007/Word 12 2006 use of XML markup - Custom XML Tags, SmartTags, Math elements in an RTF document, password protection, elements corresponding to Office Open XML Ecma-376 Part 4[26]

Code syntax

RTF is programmed by using groups, a backslash, a control word and a delimiter. Groups are contained within braces ({}), with the opening brace and closing brace indicating the start of the group and closing of the group respectively. Groups are used to indicate what type of attributes to apply to certain text. The backslash (\) indicates that a control word is going to be used. Control words are specifically programmed commands for RTF. They can have certain states in which they're active. Their state is represented by a number. For example,

\b0 - indicates that the Bold text is off \b1 - indicates that the Bold text is on

A delimiter is one of three things:

1. A space

2. A digit or hyphen (i.e. -23, 23, 275)

3. A character other than a digit or letter i.e.(\, /, }) [27]

As an example, the following RTF code:

{\rtf1\ansi{\fonttbl\f0\fswiss Helvetica;}\f0\pard
This is some {\b bold} text.\par
}

is a document which would be rendered like this when read by a program that supports RTF:

This is some bold text.

Character encoding

A standard RTF file can consist of only 7-bit ASCII characters, but can encode characters beyond ASCII by escape sequences.[28] The character escapes are of two types: code page escapes and, starting with RTF 1.5, Unicode escapes. In a code page escape, two hexadecimal digits following a backslash and typewriter apostrophe are used for denoting a character taken from a Windows code page. For example, if the code page is set to Windows-1256, the sequence \'c8 will encode the Arabic letter bāʼ (ب).

For a Unicode escape the control word \u is used, followed by a 16-bit signed decimal integer giving the Unicode UTF-16 code unit number. For the benefit of programs without Unicode support, this must be followed by the nearest representation of this character in the specified code page. For example, \u1576? would give the Arabic letter bāʼ ب, specifying that older programs which do not have Unicode support should render it as a question mark instead.

The control word \uc0 can be used to indicate that subsequent Unicode escape sequences within the current group do not specify the substitution character.

Until RTF specification version 1.5 release in 1997, RTF has only handled 7-bit characters directly and 8-bit characters encoded as hexadecimal (using \'xx). RTF control words (since RTF 1.5) generally accept signed 16-bit numbers as arguments. Unicode values greater than 32767 must be expressed as negative numbers.[22] If a Unicode character is outside BMP, it is encoded with a surrogate pair. Support for Unicode was made due to text handling changes in Microsoft Word – Microsoft Word 97 is a partially Unicode-enabled application and it handles text using the 16-bit Unicode character encoding scheme.[22] Microsoft Word 2000 and later versions are Unicode-enabled applications that handle text using the 16-bit Unicode character encoding scheme.[3]

RTF files are usually 7-bit ASCII plain text. RTF consists of control words, control symbols, and groups. RTF files can be easily transmitted between PC based operating systems because they are encoded as a text file with 7-bit graphic ASCII characters. Converters that communicate with Microsoft Word for MS Windows or Macintosh should expect data transfer as 8-bit characters and binary data can contain any 8-bit values.[26]

Human readability

Unlike many word processing formats, RTF code can be human-readable: when an RTF file is viewed as a plain text file, the contained ASCII text is legible. The formatting code is not too distracting nor counter-intuitive, provided that the document's creator kept formatting concise. At the time of RTF's initial release, this was rare among document formats. Today, XML-based formats, which are human-readable, are more common. In contrast, MS Word's .doc format is binary, with only a few scraps of legible text.

Although the content can be read, the often very extensive formatting code makes it hard to read. The files produced by most programs, such as Microsoft Word, contain large amounts of formatting code. Such files are easily ten or more times larger than the corresponding plain text. They are not legible.[29][30] Also, non-ASCII characters must be escaped in standard-compliant RTF. Thus, even with concise formatting, text that uses certain dashes and quotation marks is less legible. Latin languages that make heavy use of characters with diacritics, such as \'f1 for ñ and \'e9 for é are particularly difficult to read in RTF. Non-Latin scripts, consisting of characters such as \u21563 for , are illegible in RTF. Finally, from its beginnings, RTF has supported Microsoft OLE embedded objects and Macintosh Edition Manager subscriber objects, which are not human-readable.

RTF is a data format for saving and sharing documents, not a markup language; it is not intended for intuitive and easy typing by a person.[30][31]

Common uses and interoperability

Most word processing software supports RTF format importing and exporting (following some version of RTF specification), and/or direct editing, often making it a "common" format between otherwise incompatible word processing software and operating systems. These factors contribute to its interoperability, but it will depend on what version of RTF is being used.[7] There are several consciously designed or accidentally born RTF dialects.[32] Most applications that read RTF files silently ignore unknown RTF control words.[32]

RTF is the internal markup language used by Microsoft Word.[30] Overall, since 1987, RTF files may be transferred back and forth between many old and new computer systems (and now over the Internet) despite differences between operating systems and their versions. (But there are incompatibilities, e.g. between RTF 1.0 1987 and later specifications, or between RTF 1.0-1.4 and RTF 1.5+ in use of Unicode characters.)[33][34][35] This makes it a useful format for basic formatted text documents such as instruction manuals, résumés, letters, and modest information documents. These documents at minimum support bold, italic, and underline text formatting. Also typically supported are left-, center-, and right-aligned text, font specification and document margins.

Font and margin defaults, as well as style presets and other functions vary according to program defaults. There may also be subtle differences perhaps between different versions of the RTF specification implemented in differing programs and program versions. Nevertheless, the RTF format is consistent enough from computer to computer to be considered highly portable and acceptable for cross-platform use. The format supports metadata such as title, author, etc. but not all implementations support this.

Objects

Use of Microsoft Object Linking and Embedding (OLE) objects or Macintosh Edition Manager subscriber objects limits the interoperability, because these objects are not widely supported in programs for viewing or editing RTF files (e.g. embedding of other files inside the RTF, such as tables or charts from spreadsheet application).[36][37][38][39][40] If a software that understands an OLE object is not available, the object is usually replaced by a picture (bitmap representation of the object) or not displayed at all.[41][42]

Pictures

RTF supports inclusion of JPEG, Portable Network Graphics (PNG), Enhanced Metafile (EMF), Windows Metafile (WMF), Apple PICT, Windows Device-dependent bitmap, Windows Device Independent bitmap and OS/2 Metafile picture types in hexadecimal (the default) or binary format in a RTF file. Not all of these picture types are supported in all RTF readers. When a RTF document is opened in software that does not support the picture type of an inserted picture, such picture is not displayed at all.

RTF writers usually convert inserted pictures from an unsupported picture types (e.g. BMP, TIFF, GIF, etc.) to one of supported picture types (PNG, WMF) or they do not include pictures at all.

For better compatibility with Microsoft products, some RTF writers include the same picture in two different picture types in one RTF file:[43]

This method increases the RTF file size rapidly. The RTF specification does not require this method and there are various implementations that include pictures without the WMF copy (e.g. Abiword or Ted).

For Microsoft Word it is also possible to set a specific registry value ("ExportPictureWithMetafile=0") in order to prevent Word from saving the WMF copy (see link "Document file size increases with EMF, PNG, GIF, or JPEG graphics in Word" at the beginning).

Fonts

RTF supports embedding of fonts used in the document, but this feature is not widely supported in software implementations.[44][45][46]

RTF also supports generic font family names used for font substitution: roman (serif), swiss (sans-serif), modern (monospace), script, decorative, technical.[16] This feature is not widely supported for font substitution, e.g. in OpenOffice.org or Abiword.

Annotations

RTF specification supports annotations (comments in documents) since version 1.0.[16] RTF 1.7 specification defined some new features for annotations: date stamp (there was previously only "time stamp") and parents of annotations.[24] When a RTF document with annotations is opened in an application that does not support RTF annotations, they are not displayed at all. Similarly, when a document with annotations is saved as RTF in an application that does not support RTF annotations, annotations are not preserved in the RTF file. Some implementations may hide annotations by default or require some user action to display them - e.g. in Abiword since version 2.8 or in IBM Lotus Symphony (up to version 1.3).

Microsoft products do not support comments within footers, footnotes or headers. Inserting a comment within headers, footers, or footnotes may result in a corrupted RTF document.[26]

The RTF specification also supports footnotes (not to be confused with annotations), which are widely supported in RTF implementations (e.g. in OpenOffice.org, Abiword, KWord, Ted, but not in Wordpad). Endnotes are implemented as a variation on footnotes such that applications that support footnotes and not endnotes will render endnotes in an RTF document as footnotes. Similar to annotations, due to Microsoft products not supporting footnotes in headers, footers, or comments, including footnotes within those contexts in an RTF document may result in a corrupted document.[26]

Drawing objects

RTF 1.2 specification defined use of drawing objects such as rectangles, ellipses, lines, arrows, polygons and various other shapes. RTF 1.5 specification introduced many new control words for drawing objects. RTF drawing objects are also called "shapes" since RTF 1.5.[22]

However, RTF drawing objects are not supported in many RTF implementations, such as Apache OpenOffice[47] (though they are supported in LibreOffice 4.0 on[48]) or Abiword.[49] When an RTF document with drawing objects is opened in an application that does not support RTF drawing objects, they are not displayed at all. Some implementations will also not display any text inside drawing objects.[50][51] Similarly, when a document with drawing objects is saved as RTF in an application that does not support RTF drawing objects, these are not preserved in the RTF file.

Security concerns

Unlike Microsoft Word's DOC format, as well as the newer Office Open XML and OpenDocument formats, RTF does not support macros. For this reason, RTF was often recommended over those formats when the spread of computer viruses through macros was a concern. However, having the .RTF extension does not guarantee that a file is safe, since Microsoft Word will open standard DOC files renamed with an RTF extension and run any contained macros as usual. Manual examination of a file in a plain text editor such as Notepad, or use of the file command in UNIX-like systems, is required to determine whether or not a suspect file is really RTF.[9][52] Enabling Word's "Confirm file format conversion on open" option (not enabled by default in any version of Word) can also assist by warning a document being opened is in a format that does not match the format implied by the file's extension, and giving the option to abort opening that file.

RTF files can carry malware; sometimes malicious files in RTF format are renamed with the .DOC extension. One exploit attacking a vulnerability was patched in Microsoft Word in April 2015.[53]

Since 2014 there have been malware RTF files embedding OpenXML exploits (.DOCX file with ZIP header, renamed with RTF extension) "to create a multi-exploit master key to cover a number of recent patched exploits in one RTF with low AV detection".[54] Documents of this and other types can be analysed free of charge online with a tool called Cryptam.[55]

Implementations

Each RTF implementation usually implements only some versions or subsets of the RTF specification.[7] Many of the available RTF converters cannot understand all new features in the latest RTF specifications.[33][56]

The WordPad editor in Microsoft Windows creates RTF files by default. It once defaulted to the Microsoft Word 6.0 file format, but write support for Word documents (.doc) was dropped in a security update. Read support was also dropped in Windows 7. WordPad does not support some RTF features, such as headers and footers.[57] However, WordPad can read and save many RTF features that it cannot create such as: tables, strikeout, superscript, subscript, "extra" colors, text background colors, numbered lists, right or left indent, quasi-hypertext and URL linking, and various line spacings. RTF is also the data format for "rich text controls" in MS Windows APIs.[30]

The default text editor for Mac OS X, TextEdit, can also view, edit and save RTF files as well as RTFD files. TextEdit currently (as of July 2009) has limited ability to edit RTF document margins. Much older Mac word processing application programs such as MacWrite and WriteNow were able to view, edit, and save RTF files as well.

The free and open-source word processors AbiWord, Apache OpenOffice, Bean, Calligra, KWord, LibreOffice and NeoOffice can view, edit and save RTF files. RTF format is also used in the Ted word processor.

Scrivener uses individual RTF files for all the text files that make up a given "project".

SIL International’s Toolbox freeware application for developing and publishing dictionaries uses RTF as its most common form of document output. RTF files produced by Toolbox are designed to be used in Microsoft Word, but can also be used by other RTF-aware word processors.

RTF can be used on some ebook readers because of its interoperability,[58] simplicity, and low CPU processing requirements.

Libraries and converters

The open-source script rtf2xml can partially convert RTF to XML.[59][60]

GNU UnRTF is an open-source program to convert RTF into HTML, LaTeX, troff macros and other formats. pyth is a Python library to create and convert documents in RTF, XHTML and PDF format. Ruby RTF is a project to create Rich Text content via Ruby. RaTFink is a library of Tcl routines, free software, to generate RTF output, and a Cost script to convert SGML to RTF. RTF::Writer is a Perl module for generating RTF documents. PHPRtfLite is an API enabling developers to create RTF documents with PHP. Pandoc is an open source document converter with multiple output formats, including RTF. RTFGen is a project to create RTF documents via pure PHP.

The Mac OS X command line tool textutil enables files to be converted between rtf, rtfd, text, doc, docx, wordml, odt, and webarchive.[61]

Criticism

The Rich Text Format was the standard file format for text-based documents in applications developed for Microsoft Windows. Microsoft did not initially make the RTF specification publicly available, making it difficult for competitors to develop document conversion features in their applications. Because Microsoft's developers had access to the specification, Microsoft's applications had better compatibility with the format. Also, every time Microsoft changed the RTF specification, Microsoft's own applications had a lead in time-to-market, because competitors had to redevelop their applications after studying the newer version of the format.

Novell alleged that Microsoft's practices were anticompetitive in its antitrust complaint against Microsoft.[62][63] The RTF specifications lack some of the semantic definitions necessary to read, write and modify documents.[64]

See also

References

  1. "Text Media Types". iana.org. 1993-06-08. Retrieved 2010-03-13.
  2. "Application Media Types". iana.org. 2007-06-18. Retrieved 2010-08-20.
  3. 1 2 3 Microsoft Corporation (May 1999). "Rich Text Format (RTF) Specification, version 1.6". Retrieved 2010-03-13.
  4. 1 2 Microsoft Corporation (2004-04-20). "Word 2003: Rich Text Format (RTF) Specification, version 1.8". Retrieved 2010-03-13.
  5. John Siracusa (2005-04-28). "Mac OS X 10.4 Tiger - File types revisited". Retrieved 2010-03-13.
  6. "tutorial: Rich Text Format (RTF)". Colorado State University. Retrieved 2010-03-13. Like “.doc,” RTF is a proprietary file format, but it has been designed to be more widely compatible and transferable.
  7. 1 2 3 4 "4.3 Non-HTML file formats". e-Government Unit. May 2002. Retrieved 2010-03-13. There are many different revisions of Microsoft’s proprietary Rich Text Format and portability of files will depend on what version of RTF is being used.
  8. e-Government Unit (May 2002). "4.3 Non-HTML file formats (archived site)". archive.org. Archived from the original on 2007-03-21. Retrieved 2011-01-12. There are many different revisions of Microsoft’s proprietary Rich Text Format and portability of files will depend on what version of RTF is being used.
  9. 1 2 "Benefits of Rich Text Format (RTF)". Desktop Publishing, Presentations & Word Processing. ETR Associates. Archived from the original on 2008-03-23.
  10. "Sean M. Burke - RTF-Writer - The RTF Cookbook". Retrieved 2013-09-16.
  11. Changes in Word 2010
  12. Microsoft (2011-03-17), GS26 RS Referencing Explanatory Report (RER) for DR 10-0017, General: missing normative reference, for RTF (PDF), retrieved 2011-04-02
  13. "Information about the Rich Text Format (RTF) version specifications for various versions of Word". 2007-02-21. Retrieved 2010-03-13.
  14. "Those who forget Santayana…". Rob Weir. 2007-12-20. Retrieved 2010-03-13.
  15. Microsoft Corporation, Rich-Text Format (RTF) Specification - RTF Version 1.0 (RTF), retrieved 2010-03-13
  16. 1 2 3 Microsoft Corporation (June 1992), Microsoft Product Support Services Application Note (Text File) - GC0165: Rich-Text Format (RTF) Specification (TXT), retrieved 2010-03-13
  17. Microsoft Corporation, Rich Text Format Specification v. 1.2 (RTF), retrieved 2010-03-13
  18. Rich Text Format Specification v. 1.2 (PDF), retrieved 2010-03-13
  19. Microsoft Corporation (January 1994), Rich Text Format (RTF) Specification - RTF Version 1.3 (RTF), retrieved 2010-03-13
  20. Microsoft Corporation (January 1994), Rich Text Format (RTF) Specification - RTF Version 1.3 (TXT), retrieved 2010-03-13
  21. Microsoft Corporation. "RTF - Rich Text Format". Retrieved 2010-03-13.
  22. 1 2 3 4 5 Microsoft Corporation. "Rich Text Format (RTF) Version 1.5 Specification". Retrieved 2010-03-13.
  23. 1 2 Word 2002 Tool: Rich Text Format Specification, archived from the original on November 12, 2010, retrieved 2012-09-26
  24. 1 2 Microsoft Corporation (2001-08-31), Word 2002 Tool: Rich Text Format Specification - 8/2001– Word 2002 RTF Specification (EXE (ZIP)), retrieved 2010-03-13
  25. "RTF 1.9 Specification (Word 2007)". Greg Duncan. 2007-01-09. Retrieved 2010-03-13.
  26. 1 2 3 4 Microsoft Corporation (2008-03-20). "Word 2007: Rich Text Format (RTF) Specification, version 1.9.1". Retrieved 2010-03-13.
  27. http://www.biblioscape.com/rtf15_spec.htm
  28. Microsoft RTF Syntax
  29. Sean M. Burke (2008-07-12). "Rich Text Format - MSWord generates some scary RTF". Retrieved 2010-03-13.
  30. 1 2 3 4 Sean M. Burke (July 2003). "RTF Pocket Guide". Retrieved 2010-03-13.
  31. RTF Pocket Guide by O'Reilly Media, retrieved 2010-03-13
  32. 1 2 Mark de Does (2009-10-23). "Ted, an easy rich text processor". Retrieved 2010-03-13.
  33. 1 2 "How to Import Microsoft Word Files into WordPerfect for DOS". Retrieved 2010-03-13.
  34. "Abiword Help - File Formats". Retrieved 2010-03-13.
  35. "Opening Rich Text Format (RTF) files". Retrieved 2010-03-13.
  36. Bruce Byfield (2005-08-23). "FOSS word processors compared: OOo Writer, AbiWord, and KWord". Retrieved 2010-04-06.
  37. "Sharing files between OpenOffice.org and Microsoft Office". 2005-07-28. Retrieved 2010-04-06.
  38. "SoftMaker Office 2008 focuses on compatibility with Microsoft Office". 2008-11-20. Retrieved 2010-04-06.
  39. "SoftMaker Office 2006 beta: Not a killer app". 2006-11-21. Retrieved 2010-04-06.
  40. Philippe Lagadec (2006-11-30), OpenOffice / OpenDocument and Microsoft Office 2007 / Open XML security (PDF), retrieved 2010-04-06
  41. "OLE object - bitmap representation?". Archived from the original on July 24, 2011. Retrieved 2010-04-06.
  42. "A Rich Edit Control That Displays Bitmaps and Other OLE Objects". Retrieved 2010-04-06.
  43. "Document file size increases with EMF, PNG, GIF, or JPEG graphics in Word". Retrieved 2011-03-01.
  44. "Embedded fonts are not displayed as expected in the documents that are saved as RTF in Word". Microsoft Corporation. 2007-02-20. Retrieved 2010-03-17.
  45. "Embedding fonts in RTF file". 2005-04-23. Retrieved 2010-03-17.
  46. "OpenOffice.org Issue - MS Interoperability: embedd fonts into the document". Retrieved 2010-03-17.
  47. "Issue 3790 - RTF: Import Word 97-2000 RTF for Drawing Objects (Shapes)". Apache OpenOffice (AOO) Bugzilla. Apache Software Foundation. Retrieved 2014-10-27.
  48. "LibreOffice 4.0 Release Notes". The Document Foundation. Retrieved 2014-10-27.
  49. "Re: Drawing inside Abiword". 2006-03-15. Retrieved 2011-05-21.
  50. "OOoForum.org - Problem opening RTF file in Writer". Retrieved 2011-05-19.
  51. "OpenOffice.org Bugzilla – Bug 113308 - Vertical text in border". Retrieved 2011-05-19.
  52. "Avoiding Macro Viruses". SANS Institute (via archive.org). Archived from the original on June 10, 2011. Retrieved 2015-06-06.
  53. Paul Ducklin (8 September 2015). "Anatomy of a malicious email: Crooks exploiting recent Word hole – Naked Security". Sophos Web site. Retrieved 16 February 2016.
  54. "malware tracker blog: Cryptam Document Analysis + OpenXML embedded in RTF". Blog.malwaretracker.com. Retrieved 16 February 2016.
  55. Cryptam online document analysis tool
  56. Wilfried Hennings (2010). "Converters from PC Textprocessors to LaTeX - Overview - Converting from RTF". Retrieved 2010-03-13.
  57. "Why does RTF not work properly in WordPad and NotePad?". Retrieved 2010-03-13.
  58. "Handbook on Minimum Information Interoperability Standards (MIOS)" (PDF). Department of Public Service and Administration (South Africa). 2002-04-16. Retrieved 2010-07-11.
  59. "rtf2xml: convert MS RTF to XML". Retrieved 2010-06-05.
  60. "rtf2xml - The Man Page". Retrieved 2010-06-05.
  61. "textutil man page". Retrieved 2013-06-25.
  62. Novell (2004-11-12), Novell Files WordPerfect Antitrust Lawsuit against Microsoft (PDF), retrieved 2010-03-13
  63. "The Novell Antitrust Complaint (as text) & A Law About Antitrust and Standards Writing". 2004-11-17. Retrieved 2010-03-13.
  64. Hannes Schmidt (2004-08-06). "Microsoft RTF Specification Nightmare". Retrieved 2010-06-05.
This article is issued from Wikipedia - version of the 11/22/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.