dp.SyntaxHighlighter 1.5.2 Tests and Samples

http://code.google.com/p/syntaxhighlighter/

CSS

Languages:

  1. C#
  2. CSS
  3. C++
  4. Delphi
  5. Java
  6. JavaScript
  7. PHP
  8. Python
  9. Ruby
  10. SQL
  11. Visual Basic
  12. XML / HTML
  13. Scala
  14. Groovy
  15. Bash

Features:

  1. Smart tabs
  2. First line
  3. Expand code
  4. Show columns
  5. Blogger integration
  6. No gutter
  7. No controls

Issues:

  1. #7, XSL transformation
  2. #15, Incorrect single quote
  3. #10, VB crash
  4. #19, No matches
Block before.
/* Main style for the table */

/* Issue #4 (http://code.google.com/p/syntaxhighlighter/issues/detail?id=4) */
a.button:active {  
	background-position: bottom right;
	background-position: top left;
}
/* end */

/* Issue #23 (http://code.google.com/p/syntaxhighlighter/issues/detail?id=23) */
a.button:active {  
	_background-position: bottom right;
	font-size: 23px;
}
/* end */

.dp-highlighter
{
	font-family: "Courier New", Courier, mono;
	font-size: 12px;
	text-align: left;
	border: 1px solid #2B91AF;
	background-color: #fff;
	width: 99%;
	overflow: auto;
	line-height: 100% !important;
	margin: 18px 0px 18px 0px;
}

.dp-highlighter ol
{
	margin: 0px 0px 0px 45px;
	padding: 0px;
	color: #2B91AF;
}

.dp-highlighter ol li
{
	border-left: 3px solid #6CE26C;
	border-bottom: 1px solid #eee;
	background-color: #fff;
	padding-left: 10px;
}

.dp-highlighter ol li.alt
{
	background-color: #f8f8f8;
}
Block after.