Wikiの書き方
(版間での差分)
細 (→プログラムの色付) |
細 (→GeSHi) |
||
60行: | 60行: | ||
echo $v; // end of php code | echo $v; // end of php code | ||
?> | ?> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</syntaxhighlight> | </syntaxhighlight> | ||
2016年5月28日 (土) 11:43時点における版
目次 |
書き方
samples
画像
SyntaxHighlighter
プログラムの色付け
-- User define local tx = 3 local ty = 4 function digdag() turtle.dig() turtle.forward() return true end for x = 1, tx do for y = 1, ty do turtle.forward() turtle.turnRight() end end
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; }