I'm building an application and I basically want to convert HTML into XAML's flow document style (e.g. <Paragraph>, <List>, etc...)
I'm pretty confident I can use RegEx to replace the appropriate HTML tags into XAML tags. The problem is, how do I dynamically bind this to a content that supports those tags such as TextFlow
My basic idea is to bind the original string to the TextFlow (or other control I use), and then use a ValueConverter to convert it each time. The only problem is none of the flow controls seem to have a bindable content property.
Anyone have any ideas

Rendering text dynamically in with style
Rowland
try putting one of the Block elements inside the text flow and binding that to your converter.
e.g.,
<TextFlow>
<Paragraph Text={Binding ...,Converter={StaticResource myConverter}}/>
</TextFlow>
Sean D
Read this thread for more details:
http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.windows.developer.winfx.avalon&tid=6246e7be-7d2c-4550-bf53-bd2bff683331&cat=en-us-msdn-windev-winfx&lang=en&cr=US&sloc=en-us&m=1&p=1