Wikiの書き方
(版間での差分)
細 (→書き方) |
|||
25行: | 25行: | ||
[[ファイル:2016-05-23 test.png]] | [[ファイル:2016-05-23 test.png]] | ||
+ | |||
+ | ===GeSHi=== | ||
<syntaxhighlight lang="php"> | <syntaxhighlight lang="php"> | ||
35行: | 37行: | ||
?> | ?> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | |||
+ | ===SyntaxHighlighter=== | ||
+ | |||
+ | <source lang="javascript"> | ||
+ | // SyntaxHighlighter makes your code snippets beautiful without tiring your servers. | ||
+ | // http://alexgorbatchev.com | ||
+ | var setArray = function(elems) { | ||
+ | this.length = 0; | ||
+ | push.apply(this, elems); | ||
+ | return this; | ||
+ | } | ||
+ | </source> | ||
[[Category:Management]] | [[Category:Management]] |
2016年5月28日 (土) 11:26時点における版
目次 |
書き方
samples
- 画像
Check any syntaxes
※ここから先は管理者用のテストエリアです
GeSHi
<?php $v = "string"; // sample initialization ?> html text <? echo $v; // end of php code ?>
SyntaxHighlighter
// SyntaxHighlighter makes your code snippets beautiful without tiring your servers. // http://alexgorbatchev.com var setArray = function(elems) { this.length = 0; push.apply(this, elems); return this; }