Convert Notes Richtext Content to Pure HTML

Hi,Has anyone tried converting Notes Richtext Content to Pure HTML ?

I have an application, wherein users enter some details in a richtext field. It may contain formatted text,links, images etc. I want to pass the information to another Java application which expects only HTML input.

Any thoughts on this would be highly appreciated.

Regards,

Josy.

Subject: ?OpenField

there is an undocumented URL command “?OpenField”.

What this URL command does, is return the HTML rendering of a specified Rich Text Field, with no head, no body tag etc. So for example, if you were take one of my blog entries, which are stored in a Domino database, the Rich Text I write is stored in a Rich Text Field “EntryRICH” so if I wanted just the HTML from that field for a blog entry last week, I would enter something like:

http://www.iminstant.com/iminstant/iminstant.nsf/d6plinks/CTYR-7GZK8S/EntryRICH?OpenField

Where the format is:

Server/databasefolder/databasename/view/LookupKey/RTFFieldName?OpenField.

Subject: ?OpenField did the magic.

Thanks Carl.?OpenField works perfectly fine. Being a Notes developer for many years, I didn’t know about ?OpenField :slight_smile:

Is there any way we can attach the source(The HTML source) of the richtext field to the document ? Some thing like : We run an agent which gets the source and attaches the source.html to the document ?