Convert HTML to XAML - html

Is there a way to convert HTML into XAML?
I noticed that you can paste HTML into a RichTextBox and you can get the XAML by looking at the FlowDocument. However, this is a hack.
Is there a better way?

I don't think it's possible to do an exact conversion from HTML to XAML, because there isn't a one to one equivalence between the two.
There are a few tools that may help you, but don't expect a perfect result :
http://msdn.microsoft.com/en-us/library/aa972129.aspx
http://windowsclient.net/downloads/folders/controlgallery/entry2313.aspx

Related

Converting HTML to MJML?

I'm new to MJML and I'm wondering if it's possible to convert HTML to MJML? I've tried searching for answers but the results are always the opposite.
No, it is not possible.
I guess your question is, "Is it possible to convert HTML to MJML automatically? Is there any tool for that?"
That is not possible. As far as I know, there is no such tool.
You can only manually "convert" HTML to MJML. Basically, that means you write MJML code that produces specified HTML output.

Programmatically formatting HTML in Eclipse workspace

I like Eclipse's HTML formatter. It is the best formatter I have seen and I want to use it programmatically. Is it possible? And how?
Thank you greg-449, but your advice is too difficult for me.
I have an lxml based XHTML-to-XHTML converter. I am using it mainly from PyDev. Its output is not so much human-readable and that is not what I want.
I know several ways to format XHTML. And I like Eclipse's formatter the best.
eclipse's html formatter class is org.eclipse.wst.html.core.internal.format.HTMLFormatter
you can get the source code and remove dependencies to other eclipse libraries in the class and use it...
you can find the source from here (and some other places)

Convert a HTML file to Image in C++ apart from 'wkhtmltoimage'

I need to convert a local HTML file to a Jpeg Image in a C++ module. As per our requirement, I cannot use 'wkhtmltoimage'. Hence I need any command line tool or libraries( which can be used in C++ ) that are available for the same.
Any suggestion will be appreciated.
ImageMagick is able to convert HTML to images (by first converting the HTML into PostScript and then to an image), however it's definitely not the best solution. WebKit is really the best tool for the job here. I don't know all the details about your situation, but maybe try linking to WebKit and using it directly instead of invoking wkhtmltoimage?

Beautifying HTML with JSP mixed in

Does anyone know of an HTML beautifier that can deal with (or at least ignore) JSP? I've searched high and low... I'm not looking for an HTML validator, just something that can format the file decently (i.e. indentation).
Most good IDE's will let you say which code template to use as default within another file extension.
So i use PHPstorm in which i can say, for example that a *.jsp will use html first and then jsp. This way the page will display and reformat my code with the correct spacings and what not.
Worth looking into which IDE you are using, assuming you're using one :)

Displaying HTML in WP7

So I was looking for a way to display HTML in WP7 (binding it to datacontext) and a generous dude here suggested that I use the MPS Toolkit, that provides HTMLViewer and HTMLTextBox components to WP7. so I did and at the beginning it looked great. the html was displayed exactly how I wanted but for some pages it throws the following exception:
The property 'Margin' was not found in type 'Paragraph'
I've been sitting 2 days trying to fix this problem without luck!
I though it was because of some attributes in the xaml but I was wrong, it's something in the html that this library doesn't like.
Does anyone know about a solution for this? or maybe another suggestion for displaying html in wp7 (not webbrowser).
Anything would be REALLY appreciated!
What's wrong with using WebBrowser? All you need is an attached property that will be able to invoke the HTML rendering method (NavigateToString) with the content you pass to it.