I use google-code-prettify as my syntax highlighter, but i have a problem with asp.net tags, prettify doesn't recognize it, so code like this:

<asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <asp:UpdatePanel ID="UpdatePanel1" runat="server">
     <ContentTemplate>
       <asp:Button ID="SubmitButton" 
                   runat="server" 
                   Text="partial postback" 
                   onclick="SubmitButton_Click" />

      <a href="#" id="clientClick"><span>jQuery</span></a>
     </ContentTemplate>
    </asp:UpdatePanel>

is ignored. i have noticed that stackoverflow is also using prettify. so i wonder how they do it?

link|improve this question

79% accept rate
Why do you believe SO uses prettify? – Oded Aug 13 '11 at 17:02
1  
@Oded because they've said so – Joel Coehoorn Aug 13 '11 at 17:03
because i have looked into the page source. – tone Aug 13 '11 at 17:06
@Oded, see meta.stackoverflow.com/questions/33256/… – Mike Samuel Aug 13 '11 at 17:59
feedback

1 Answer

Prettify author here. If you have a code sample that demonstrates the problem, file a bug at http://code.google.com/p/google-code-prettify/issues/entry and I'll look into it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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