Notepad ++ realce de sintaxe incorreto?

2

Por isso, quero criar um site XHTML 1.0 Strict based. Usando o Notepad ++ para realce de sintaxe veio como uma idéia para mim. Mas quando tentei colocar a declaração XML (como declarado na especificação, as páginas XHTML adequadas devem usar uma declaração XML e serem servidas como application / xhtml + xml) Não consigo obter o documento inteiro realçado de forma adequada. Aqui está o código que usei para uma página básica:

<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us">
    <head>
        <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
        <title>Page</title>
        <script type="application/javascript">
                alert("A perfectly valid xHTML page...");
        </script>
        <style type="text/css">
                #test {
                    text-align: center;
                }
        </style>
    </head>
    <body>
        <h1 id="test">TEST</h1>
    </body>
</html>

Cole isso no Notepad ++ e você verá que ele não realçará o código entre <script type="application/javascript"> e </script> (renderiza seu plano de fundo em branco) se o idioma estiver definido como XML. Se eu definir o idioma para HTML, o script fica realçado corretamente, mas a declaração XML não é. O que fazer? Como criar uma linguagem híbrida - combinação de XML e HTML?

    
por user360919 23.08.2014 / 18:08

1 resposta

0

O Notepad ++ usa a extensão do arquivo para decidir sobre o Lexer (ou seja, marca-texto) a ser usado. Se você salvar seu arquivo como .xhtml, ele deverá começar a ser destacado corretamente. Na verdade, você pode salvar seu arquivo como .html porque ambos usam o mesmo Lexer.

Se você olhar no arquivo do Notepad ++ langs.model.xml , verá o que quero dizer:

<Language name="html" ext="html htm shtml shtm xhtml hta" commentLine="" commentStart="&lt;!--" commentEnd="--&gt;">
    <Keywords name="instre1">!doctype a abbr accept accept-charset accesskey acronym action address align alink alt applet archive area article aside audio axis b background base basefont bdo bgcolor big blockquote body border br button canvas caption cellpadding cellspacing center char charoff charset checkbox checked cite class classid clear code codebase codetype col colgroup color cols colspan command  compact content contenteditable contextmenu coords data datafld dataformatas datalist datapagesize datasrc datetime dd declare defer del details dfn dir disabled div dl draggable dropzone dt em embed enctype event face fieldset figcaption figure file font footer for form frame frameborder frameset h1 h2 h3 h4 h5 h6 head header  height hgroup hidden hr href hreflang hspace html http-equiv i id iframe image img input ins isindex ismap kbd keygen label lang language leftmargin legend li link  longdesc map marginheight marginwidth mark marquee maxlength media menu meta meter method multiple name nav noframes nohref noresize noscript noshade nowrap object ol onabort onafterprint onbeforeonload onbeforeprint onblur oncanplay oncanplaythrough onchange onclick oncontextmenu ondblclick ondrag ondragend ondragenter ondragleave ondragover ondragstart ondrop ondurationchange ondurationchange onemptied onended onerror onfocus onformchange onforminput onhaschange oninput oninvalid onkeydown onkeypress onkeyup onload onloadeddata onloadedmetadata onloadstart onmessage onmousedown onmousemove onmouseout onmouseover onmouseup onmousewheel onoffline ononline onpagehide onpageshow onpause onplay onplaying onpopstate onprogress onratechange onreadystatechange onredo onreset onresize onscroll onseeked onseeking onselect onselect onstalled onstorage onsubmit onsubmit onsuspend ontimeupdate onundo onunload onunload onvolumechange onwaiting optgroup option output p param password placeholder pre profile progress prompt public q radio readonly rel reset rev rows rowspan rp rt ruby rules s samp scheme scope script  section select selected shape size small source span spellcheck src standby start strike strong style sub submit summary sup tabindex table target tbody td text textarea tfoot th thead time title topmargin tr tt type u ul usemap valign value valuetype var version video vlink vspace wbr width xml xmlns</Keywords>
</Language>
    
por 24.08.2014 / 12:55