---
title: Feature Demo
encoding: utf-8
filter:
  - erb
  - maruku
---
The two blocks below, 'source' and 'result' are generated dynamically by SyntaxHighlighter from regular
`<pre />` HTML tags. If you want to see a specific syntax in action, check out the [bundled syntaxes page](../brushes/). 

### Source

<pre class="brush: plain">
	&lt;pre class="brush: php; highlight: [5, 15]; html-script: true">
	&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
	&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
	&lt;head>
		&lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
		&lt;title>SyntaxHighlighter Demo Page - &lt;?= htmlspecialchars($title) ?>&lt;/title>
	&lt;/head>

	&lt;body>

	&lt;?
	/***********************************
	 ** Multiline block comments
	 **********************************/

	$stringWithUrl = "http://alexgorbatchev.com";
	$stringWithOutUrl = 'hello world';
	
	ob_start("parseOutputBuffer");		// Start Code Buffering
	session_start();
	
	function parseOutputBuffer($buf) {
		global $portal_small_code, $portal_gzcompress;
		global $PHP_SELF, $HTTP_ACCEPT_ENCODING;

		// cleaning out the code.
		if($portal_small_code &amp;&amp; !$portal_gzcompress) {
			$buf = str_replace("	", "", $buf);
			$buf = str_replace("\n", "", $buf);
			$buf = str_replace(chr(13), "", $buf);
		}
	}

	?>

	&lt;!-- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. -->

	&lt;/body>
	&lt;/html>
	&lt;/pre>
</pre>

### Result

<pre class="brush: php; highlight: [5, 15]; html-script: true">
	&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
	&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
	&lt;head>
		&lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
		&lt;title>SyntaxHighlighter Demo Page - &lt;?= htmlspecialchars($title) ?>&lt;/title>
	&lt;/head>

	&lt;body>

	&lt;?
	/***********************************
	 ** Multiline block comments
	 **********************************/

	$stringWithUrl = "http://alexgorbatchev.com";
	$stringWithOutUrl = 'hello world';
	
	ob_start("parseOutputBuffer");		// Start Code Buffering
	session_start();
	
	function parseOutputBuffer($buf) {
		global $portal_small_code, $portal_gzcompress;
		global $PHP_SELF, $HTTP_ACCEPT_ENCODING;

		// cleaning out the code.
		if($portal_small_code &amp;&amp; !$portal_gzcompress) {
			$buf = str_replace("	", "", $buf);
			$buf = str_replace("\n", "", $buf);
			$buf = str_replace(chr(13), "", $buf);
		}
	}

	?>

	&lt;!-- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. -->

	&lt;/body>
	&lt;/html>
</pre>

