This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 188938 - Provide configurable HTML formatting
Summary: Provide configurable HTML formatting
Status: RESOLVED DUPLICATE of bug 144164
Alias: None
Product: web
Classification: Unclassified
Component: HTML Editor (show other bugs)
Version: 6.x
Hardware: PC Other
: P3 normal (vote)
Assignee: David Konecny
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-07-25 13:12 UTC by nbphpuser
Modified: 2012-10-15 13:31 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description nbphpuser 2010-07-25 13:12:58 UTC
formatter cannot format following html:

<html><head><title>TEST</title></head>
    <body>
        <p>test</p>
        <div>test</div>
        <p><br />
        </p><p><br />
        </p><p>
            test

        </p><p><br />
        </p></body></html>
Comment 1 nbphpuser 2010-07-25 13:14:06 UTC
expected something like

<html>
    <head>
        <title>TEST</title>
    </head>
    <body>
        <p>test</p>
        <div>test</div>
        <p><br /></p>
        <p><br /></p>
        <p>
            test
        </p>
        <p><br /></p>
    </body>
</html>
Comment 2 Petr Pisl 2010-08-16 14:57:55 UTC
This is issue of html formatter. Reassigning.
Comment 3 David Konecny 2010-11-02 20:42:37 UTC
At the moment only indentation is implemented. Reformatting (aka code beautification) is not implemented.
Comment 4 David Konecny 2010-11-08 01:52:27 UTC
It is an enhancement.
Comment 5 Marek Fukala 2012-10-15 13:31:13 UTC

*** This bug has been marked as a duplicate of bug 144164 ***