Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I indent the following html file in emacs, the line 'background-color' is not indented correctly. Can emacs be made to use css-mode for the css part?

<!doctype html>
<html lang=en>
    <head>
        <meta charset=utf-8>
        <title>Page</title>
        <style type = "text/css"> 
            h2 {
            background-color: #BBB;
            }
        </style> 
    </head>
    <body>
        <p>
            <h2>Title</h2>
        </p>
    </body>
</html>
share|improve this question

1 Answer

Check out nXhtml mode: http://ourcomments.org/Emacs/nXhtml/doc/nxhtml.html

From its page:

Another important feature is the ability to mix several languages in one buffer and get the correct syntax highlighting and indentation for each of them.

Edit: the EmacsWiki article on multiple modes has some other options (on top of Mumamo, which is what nXhtml uses). One that you may find particularly interesting is multi-web-mode, which changes the mode based on where the point is.

I have only used nXhtml mode myself, but multi-web-mode may be simpler to set up and easier to use—while I did like nXhtml, I distinctly remember its being a hassle to set up.

share|improve this answer
1  
Well, multi-web-mode has a decent documentation (it took a minute to set up), but it is buggy, at least when used with Emacs 23.3. nXhtml, on the other hand, is nicely written. It does what is advertised and a bit more (the backgrounds of the two parts are distinct), but the documentation is lousy (how can one configure the indentation of the css subset to align the curly braces vertically?). – Calaf May 10 '11 at 4:18
2  
I've found NXHTML very buggy and unstable, and it takes a while to load too. I also dislike how it pollutes my menus and such. – monotux May 11 '11 at 20:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.