Tagged Questions
87
votes
15answers
57k views
Free XML Formatting tool [closed]
Is there a free XML formatting (indent) tool available where I can past an XML string and have it formatted so I can read the XML document correctly?
Thanks
Edit ~ I am using XML Notepad on Windows ...
48
votes
14answers
45k views
Any online xml formatter or formatter in free text editor?
Any online xml formatters? Ones that properly indent the tags.
Or any free Windows text editor which has a built-in xml formatter?
24
votes
9answers
18k views
Is there a text editor that formats XML files nicely?
I know there are many: Notepad2, Notepad++, even
UltraEdit... But I'm looking for a special feature. I want
the editor to format my XML files for human understanding.
When I open an XML file saved by ...
5
votes
7answers
821 views
Is there a stylesheet or Windows commandline tool for controllable XML formatting, specifically putting attributes one-per-line?
I am searching for an XSLT or command-line tool (or C# code that can be made into a command-line tool, etc) for Windows that will do XML pretty-printing. Specifically, I want one that has the ability ...
2
votes
1answer
59 views
Add StartElement to JAXBContext marshal
I have an object x which I want to marshal into a file.
xml of x :
<x id="0"><f1>bla</f1><f2>bla </f2><f3>bla</f3></x>
this part I figured out ... ...
2
votes
1answer
66 views
Is there a way to pretty print XML with vertical alignment?
I have a config file which has some XML like:
<Presidents>
<President first="George" last="Washington" number="1" year="1789" />
<President first="John" last="Adams" number="2" ...
2
votes
1answer
780 views
xml-fo pdf table : 'colspan' when the number of columns is dynamic
I'm generating a table in a pdf document using xml-fo.
The number of columns is dynamic. Columns are only displayed when tests are passing. In tests I'm using variables like $var1, $var2, ... that ...
1
vote
3answers
128 views
Writing formatted XML with XmlWriter
I'm trying to write to an XML file to the isolated storage but I would like to format it like this:-
<SampleData>
<Item Property1="AliquaXX" />
<Item Property1="Integer" />
...
1
vote
1answer
297 views
How to preserve whitespace within an element's opening tag in XSLT
In order to avoid committing sensitive information to an SCM repository, I wrote an XSL stylesheet that removes connection string passwords from ASP.NET Web.config files. It achieves my goal of ...