RtfPipe icon indicating copy to clipboard operation
RtfPipe copied to clipboard

Library for processing rich-text format (RTF) streams

Results 40 RtfPipe issues
Sort by recently updated
recently updated
newest added

Fixed error when run ProcessColumns function with table has special format, such as merged cell on header column, format table (thead,tbody). We have to get all RightBoundaries for all cell...

We have an RTF with `\ansicpg-535` as command, it gives the following error: > System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary. at System.ThrowHelper.ThrowKeyNotFoundException() at System.Collections.Generic.Dictionary`2.get_Item(TKey key) at...

Does the library support converting RTF to plain text instead of HTML?

The latest MS Word produces RTF with \pict and \shppict entries for the same image, resulting in rendering the same image twice. According to this site: http://www.biblioscape.com/rtf15_spec.htm \shppict entry should...

In some cases, exception will be thrown in Parser.cs, line 99. `groups.Peek().Contents.Add(token);`

When a target for a hyperlink is provided in rtf, e.g. {\field{\*\fldinst HYPERLINK "http://www.google.com/" \\t "_blank"}{\fldrslt Google}}, the resulting html is Google. This is due to a bug in HyperlinkToken,...

In a German environment the comma was used instead of a dot as a separator for decimal places.

When processing the following RTF I get a date time conversion error. Is there a way to ignore the info command: ``` info{\creatim\yr2021\mo7\dy13\hr10\min51}{\revtim\yr2021\mo7\dy13\hr10\min52}{\printim\yr0\mo0\dy0\hr0\min0}} ``` [CreateTimeError.txt](https://github.com/erdomke/RtfPipe/files/6805983/CreateTimeError.txt)

I've got an RTF file with a section resembling this (`--->` represents a `\tab` character): ``` List name:->list entry --->--->--->list entry --->--->--->list entry ``` The HTML produced has a ``...

I'm facing a problem parsing and converting rtf formatted emails . the problem is when trying to parse this email using MsgReader (which uses RtfPipe for conversion from Rtf to...