xhtml - Indentation in nxml-mode in GNU Emacs -


here example how xemacs makes indentation in xml-mode of xhtml document:

    <div><a id="page_1"/>         <p>text</p>     </div> 

in nxml-mode in gnu emacs looks this:

    <div><a id="page_1"/>     <p>text</p>     </div> 

this result of auto-indentation belongs indent-line-function. know possibility avoid behavior writing closing a-tag new line. appearance use necessary workflow.

have suggestions solve problem?


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -