pukiwiki1.5/code_x.inc.php の履歴ソース(No.3)

#author("2023-10-21T20:02:04+09:00","default:nemusg.pad","nemusg.pad")
#title(Pukiwikiでソースコード表示するプラグイン(code_x.inc.php))
* Pukiwikiでソースコード表示するプラグイン(code_x.inc.php) [#o7f54e60]

** 導入 [#d229ac37]

- まず、pukiwiki.ini.php の下記の設定で複数行のプラグインを許可しておく
  define('PKWKEXP_DISABLE_MULTILINE_PLUGIN_HACK', 0);
- [[自作プラグイン/code_x.inc.php - PukiWiki-official:https://pukiwiki.osdn.jp/?%E8%87%AA%E4%BD%9C%E3%83%97%E3%83%A9%E3%82%B0%E3%82%A4%E3%83%B3/code_x.inc.php]]
-- plugin/code_x.inc.php をアップロードするだけ

** 参考 [#gcfadfc4]

- https://munibus.hatenablog.com/entry/2023/05/30/235921

** デモ [#d3c52916]

#code_x{{
#include <stdio.h>

int main() {
  printf("Hello, World\n");
}
}}