- 日本語 (ja)
- English (en)
最近の更新
Tag Cloud
このページへのアクセス
今日: 12 / 昨日: 0
総計: 939
- Dokuwiki.fl8.jp(511)
- 13 CentOS6メール設定(28)
- FreeBSD カーネル再構築(24)
- 05 rsync(23)
最近の更新
このページへのアクセス
今日: 12 / 昨日: 0
総計: 939
[fh] text |[sh] aaa
{code to highlight}
some text
(basic)
just marks up ”some text” as preformatted text (w/o any special highlighting).
some text some text2
(extended)
marks up ”some text” as preformatted text (w/o any special highlighting) with line numbers starting at number 7.
A description
some text
(extended)
marks up ”some text” as preformatted text (w/o any special highlighting) with a footer line of ”A description”.
some text
(basic)
turns on HTML highlighting for ”some text”.
some text
(extended)
turns on HTML highlighting for ”some text” with added line numbers starting with number 1.
h A description:
some text
(extended)
turns on HTML highlighting for ”some text” and a header line of ”A description:”.
A description
some text
(extended)
turns on HTML highlighting for ”some text” with added line numbers starting with number 66 and a footer line of ”A description”.
some text
(extended)
turns on diff highlighting (autodetecting the patch format).
some text
(extended)
turns on diff highlighting (assuming an unified patch format).
A description
some text
(extended)
turns on diff highlighting (assuming a context patch format) and a footer line of ”A description”.
The shell output
some console commands capture
(extended)
turns on console mode with a footer line of ”The shell output”.
t The example page:
extern> http://dns.flat8.co.jp/index.html
some text and more
some text and more
Listing 2
var de = function() { return (typeof(window.de) == 'object') ? window.de : {}; }();
プラグインをインストールすると、plugin.info.txtが存在しないのでエラーが出力されます。
Plugin name 'syntax_plugin_code' is not a valid plugin name, only the characters a-z and 0-9 are allowed. Maybe the plugin has been installed in the wrong directory?
1.プラグイン名が、DOKU_PLUGIN_NAME_REGEX に引っかかるので、プラグイン名変更
h inc/plugincontroller.class.php
102 } elseif (preg_match('/^'.DOKU_PLUGIN_NAME_REGEX.'$/', $plugin) !== 1) { 103 msg(sprintf("Plugin name '%s' is not a valid plugin name, only the characters a-z and 0-9 are allowed. ". 104 'Maybe the plugin has been installed in the wrong directory?', hsc($plugin)), -1);
$ mv lib/plugins/syntax_plugin_code lib/plugins/syntaxplugincode
2.別なプラグインからplugin.info.txtをコピーして、適当に書き換える。
$ cp lib/plugins/color/plugin.info.txt lib/plugins/syntaxplugincode/plugin.info.txt $ vi lib/plugins/syntaxplugincode/plugin.info.txt base syntaxplugincode author XXXXXXXX email XXXX@XXX date 2008-07-22 name code2 Plugin