Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » PHP Development Tools (PDT) » xml formatting
xml formatting [message #1145464] Sat, 19 October 2013 14:40
Robert Flodstrom is currently offline Robert FlodstromFriend
Messages: 1
Registered: October 2013
Junior Member
Hi,

So, perhaps a stupid question, but how do you (if possible) change so the xml editor doesn't put all closing tags on the same line?

By default this happens to me:
<?xml version="1.0" encoding="UTF-8"?>
<main>
	<child1>
		<subchild>
			<subsubchild>huehuehuehue</subsubchild></subchild></child1>
	<child2></child2></main>


But I would like this:
<?xml version="1.0" encoding="UTF-8"?>
<main>
	<child1>
		<subchild>
			<subsubchild>huehuehuehue</subsubchild>
		</subchild>
	</child1>
	<child2></child2>
</main>


Thanks in advance!
Previous Topic:Breakpoints in Kepler ignored
Next Topic:How to format @return javadoc comments for multitype
Goto Forum:
  


Current Time: Sat Apr 27 03:06:15 GMT 2024

Powered by FUDForum. Page generated in 0.02709 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top