Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Formatting removes DOCTYPE's public declaration #250

Closed
fbricon opened this issue Dec 4, 2018 · 1 comment
Closed

Formatting removes DOCTYPE's public declaration #250

fbricon opened this issue Dec 4, 2018 · 1 comment
Assignees
Labels
bug Something isn't working DTD formatting This issue or enhancement is related to formatting support in progress
Milestone

Comments

@fbricon
Copy link
Contributor

fbricon commented Dec 4, 2018

Formatting this:

<?xml version="1.0" encoding="ISO-8859-1"?> 
<!DOCTYPE web-app
   PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
   "http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>
	<display-name>sdsd</display-name>
    <servlet>
        <servlet-name>er</servlet-name>
        <servlet-class>dd</servlet-class>
    </servlet>
</web-app>

yields that:

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app>
<web-app>
    <display-name>sdsd</display-name>
    <servlet>
        <servlet-name>er</servlet-name>
        <servlet-class>dd</servlet-class>
    </servlet>
</web-app>
@fbricon fbricon added bug Something isn't working formatting This issue or enhancement is related to formatting support DTD labels Dec 4, 2018
@fbricon fbricon added this to the v0.0.3 milestone Dec 4, 2018
@fbricon fbricon added the to do label Dec 5, 2018
@angelozerr
Copy link
Contributor

@NikolasKomonen is there any chance that you work on this issue as you will work on DTD formatting #221 ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working DTD formatting This issue or enhancement is related to formatting support in progress
Projects
None yet
Development

No branches or pull requests

3 participants