#author("2021-03-28T10:58:13+00:00","default:mizutu","mizutu")
#norelated
* AI推進準備室 [#rb12ef5d]
 ようこそ !!!!!!!!!!!!!!!!!

- Video 埋め込み例1

&tinyvideo(http://izutsu.aa0.netvolante.jp/video/sample-star.mp4,http://izutsu.aa0.netvolante.jp/images/sample-star.jpg,loop,muted,autoplay);

- Video 埋め込み例2

&tinyvideo(http://izutsu.aa0.netvolante.jp/video/sample1.mp4,http://izutsu.aa0.netvolante.jp/images/sample1.jpg,controls,loop,muted,autoplay);

#br

** タイトル1 [#w15896d7]
#codeprettify(linenums:1){{
<?php
/**
 * codeprettify.inc.php - Syntax highlighting by using google-code-prettify
 *
 * @author      makoto_kw
 * @licence     http://www.gnu.org/licenses/gpl.html  GPLv2
 * @link        http://pukiwiki.sourceforge.jp/?%E8%87%AA%E4%BD%9C%E3%83%97%E3%83%A9%E3%82%B0%E3%82%A4%E3%83%B3/codeprettify.inc.php
 * @link        http://github.com/makotokw/pukiwiki.codeprettify
 * @link        http://code.google.com/p/google-code-prettify/
 * @version     1.0
 */
function plugin_codeprettify_convert() {
	$args   = func_get_args();
	$src = htmlspecialchars(rtrim(array_pop($args)));
	$cls = 'prettyprint';
	if ($add_cls = array_shift($args)) {
		$cls .= ' '.$add_cls;
	}
	return '<pre class="'.$cls.'">'.$src.'</pre>';
}
function plugin_codeprettify_inline() {
	$args   = func_get_args();
	$src = array_pop($args);
	$cls = 'prettyprint';
	if ($add_cls = array_shift($args)) {
		$cls .= ' '.$add_cls;
	}
	return '<pre class="'.$cls.'">'.$src.'</pre>';
}
?>
}}

&codeprettify{<?php echo 'test'; ?>};


** タイトル2 [#ud06d2bd]


** タイトル3 [#e4728e85]

** 更新履歴 [#a9e26b5d]
- 2020/10/20 Pukiwikiサイトのスタートモデル wiki-base を構築。
RIGHT:※最終更新 2020/10/20
#br