Created
October 1, 2014 17:32
-
-
Save alemohamad/b4a3af78bdfc495a5384 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>SyntaxHighlighter</title> | |
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shCore.js"></script> | |
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCss.js"></script> | |
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJScript.js"></script> | |
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPHP.js"></script> | |
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushSql.js"></script> | |
<script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushBash.js"></script> | |
<link rel="stylesheet" href="http://alexgorbatchev.com/pub/sh/current/styles/shCoreDefault.css"/> | |
<script>SyntaxHighlighter.all();</script> | |
</head> | |
<body style="background: white; font-family: Helvetica"> | |
<h1>SyntaxHighlighter Example</h1> | |
<pre class="brush: php; first-line: 10; highlight: [13, 14]; auto-links: false; toolbar: false;"> | |
<?php | |
function example() | |
{ | |
$var = "http://github.com/"; | |
return $var; | |
} | |
</pre> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment