Testing the HiLiter plugin

I just added the Syntax Hiliter to the WordPress installation and am testing it out. Just the HTML(link) code is here, if you want to see some of the other styles, go to the full post…

HTML(link) code:

HTML:







  1. Hello World!


  2. </>

de:

PHP:

  1. print(“Hello World”) ?>

CSS(link) (Cascading Style Sheets) code:

CSS:

  1. body {

  2.                 font-family:Arial, Helvetica, sans-serif; font-size:14px; color:#660033;

  3. }

  4. a:link {

  5.                 color:#660099; text-decoration:none;

  6. }

  7. a:visited {

  8.                         color:#660099; text-decoration:none;

  9. }

  10. a:hover {

  11.                         color:#333300; font-weight:bold; text-decoration:underline;

  12. }

  13. a:active {

  14.                         color:#333300; font-weight:bold; text-decoration:underline;

  15. }

  16. .code {

  17.                 width:90%; border:1px solid #660000; overflow:auto; white-space:nowrap; font-size:14px;

  18.                 padding:4px 2px 4px 10px; color:#003300; font-family:“Courier New”, Courier, mono;

  19.                 background-color:#EFEFEF;

  20. }

Java code:

JAVA:

  1. // Hello World in Java

  2.  

  3. class HelloWorld {

  4.   static public void main( String args[] ) {

  5.     System.out.println( “Hello World!” );

  6.   }

  7. }

ASP code:

ASP:

  1. <%@ language=“vbscript” >


  2. <

  3. Response.write “Hello World!”

  4. %>


Discussion Area - Leave a Comment