「AsciiArtsExtension」の版間の差分
提供: Yourpedia
(新しいページ: '==使用方法== # 以下のソースをコピペして、$IP/extensions/AsciiArts/aa.php を作る。 # LocalSettings.php に、require_once( "extensions/AsciiArts/aa.php" ); ...') |
|||
5行目: | 5行目: | ||
==ソースコード== | ==ソースコード== | ||
<pre> | <pre> | ||
+ | <nowiki> | ||
<?php | <?php | ||
if ( ! defined( 'MEDIAWIKI' ) ) | if ( ! defined( 'MEDIAWIKI' ) ) | ||
13行目: | 14行目: | ||
'author' => 'Beyond', | 'author' => 'Beyond', | ||
'description' => '<nowiki><aa>(^_^)</aa></nowiki>', | 'description' => '<nowiki><aa>(^_^)</aa></nowiki>', | ||
− | 'url' => '' | + | 'url' => 'http://ja.yourpedia.org/wiki/AsciiArtsExtension' |
); | ); | ||
29行目: | 30行目: | ||
?> | ?> | ||
+ | </nowiki> | ||
</pre> | </pre> |
2007年4月19日 (木) 00:17時点における版
使用方法
- 以下のソースをコピペして、$IP/extensions/AsciiArts/aa.php を作る。
- LocalSettings.php に、require_once( "extensions/AsciiArts/aa.php" ); を追加する。
ソースコード
<?php if ( ! defined( 'MEDIAWIKI' ) ) die(); $wgExtensionCredits['parserhook'][] = array( 'name' => 'AsciiArts', 'author' => 'Beyond', 'description' => '<nowiki><aa>(^_^)</aa>', 'url' => 'http://ja.yourpedia.org/wiki/AsciiArtsExtension' ); $wgExtensionFunctions[] = 'wfAsciiArtsExtension'; function wfAsciiArtsExtension() { global $wgParser; $wgParser->setHook( 'aa', 'asciiArts' ); } function asciiArts($aainput) { $aaoutput = htmlspecialchars($aainput); return '<pre style="font-family:\'MS Pゴシック\',IPAMonaPGothic; background:#fff; border:0; margin-left: 1em;">'."$aaoutput".'';
}
?> </nowiki> </pre>