Файл: documentation/syntaxhighlighter/tests/cases/001_basic.html
Строк: 24
<?php
<pre id="sh_001_basic" class="brush: js;" title="Title/caption should render">
/**
* multiline comment
*/
text
// single line comment
text
"string" text 'string' text "string"
"string with " escape" text 'string with ' escape' text "string with " escape"
var code = '
function helloWorld()
{
// this is great!
for(var i = 0; i <= 1; i++)
alert("yay");
}
';
</pre>
<script type="text/javascript">
queue(function()
{
var $sh;
module('001_basic');
test('basic html check of default elements', function()
{
$sh = $('#sh_001_basic');
ok_sh($sh);
ok_toolbar($sh);
ok_caption($sh, 'Title/caption should render');
ok_gutter($sh);
ok_code($sh);
});
});
</script>
?>