第四演出室/includex.inc.php
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
[[第四演出室]]
*includex.inc.php [#na26a94b]
#includex(戦術逆引き1,section=(filter=^感電$),titlestr=o...
////
https: //wikiwiki.jp/touko_hip/HipBox/includex#c28c1297
*書式 [#o067e0ea]
#includex(ページ名[,オプション])
必須
ページ名
とりこむページ名
オプション
option=bool なオプションは共通して、 option, option=true...
num=数字
表示件数指定。正数は前からN件目、負数は後ろからN件目の...
num=1:10 で先頭1件目から10件目までの意味。num=-10:-1 ...
filter/except などの絞込みオプションと併用した場合、絞込...
filter=正規表現
各行を正規表現で限定する。Wikiソースに対する grep 的なも...
ヒント: ereg で判定を行います。
except=正規表現
除外全文検索。Wikiソースに対する grep -v 的なもの。
ヒント: ereg で判定を行います。 except=Test|sample → Te...
ヒント:例えばページの1部だけを取り込んでいるのに #cont...
titlestr=name | off | basename | relname | title
ページタイトル(<h1>ページ名</h1>)の表示形式。デフォル...
name|pagename|absolute: include プラグインと同じくページ...
off: ページタイトルを表示しない。
basename: ページ名の basename, つまり仮想階層を使用して...
relname|relative: 現在ページからの相対的ページ名。例:現...
title: TITLE: 行があればその文字を、なければ name を表示。
備考:TITLE: の取得には contentsx.inc.php のコードを再利...
titlelink=bool
ページタイトル(<h1>ページ名</h1>)でリンクを貼るか否か。
ヒント: pukiwiki.ini.php で $fixed_heading_edited を 1 ...
section=(contentsxオプション)
取り込むセクションを見出しに対する制限で指定。例えば、se...
セクション番号の定義
0 - 先頭から第一見出し直前までの部位
1 - 第一見出しから第二見出し直前まで
2 - 以下進む
num 以外でも contentsx のオプションを使用することによっ...
num=数字
depth=数字
filter=正規表現
except=正規表現
cache=bool
等。上述同名オプションで想像が付くとは思いますが、詳しく...
firsthead=bool
先頭行が見出しの場合、それも表示するか否か。<h1>ページタ...
readmore=until | from
until - #readmore プラグイン(同プラグインパッケージに梱...
from - #readmore から取り込む
permalink=リンク文字列
include した後にそのページへのリンク、 Permalink を表示...
動作例(仕様)
TEST/a というページが以下の内容で存在するとします。
Contents of TOP section
**AA
Contents of AA section
#contentsx
*B
Contents of B section
***BBB
Contents of BBB section
**BC
Contents of BC section
*D
Contents of D section
このページを TEST ページから include するものとします。
下記の表示例はイメージです。リンクを PukiWiki のように [...
※TITLE: というのは PukiWiki Plus! で <title></title を設...
#includex(TEST/a)
#includex(./a) // 相対階層指定。
PukiWiki の相対階層指定は UNIX とは異なることに注意。TES...
<h1>[[テストページa>TEST/a]]</h1>
Contents of TOP section
**AA
Contents of AA section
#contentsx
*B
Contents of B section
***BBB
Contents of BBB section
**BC
Contents of BC section
*D
Contents of D section
#includex(TEST/a,num=1:2) // 1行目から2行目抜き出し
<h1>[[テストページa>TEST/a]]</h1>
Contents of TOP section
**AA
#includex(TEST/a,num=1:2,titlestr=name) // h1 タイトルに...
<h1>[[Test/a>TEST/a]]</h1>
Contents of TOP section
**AA
#includex(TEST/a,num=1:2,titlestr=off) // h1 タイトルを...
Contents of TOP section
**AA
#includex(TEST/a,num=1:2,titlestr=basename)
// h1 タイトルにページ名の basename, つまり仮想階層を使...
<h1>[[a>TEST/a]]</h1>
Contents of TOP section
**AA
#includex(TEST/a,num=1:2,titlestr=relname) // h1 タイト...
<h1>[[a>TEST/a]]</h1>
Contents of TOP section
**AA
#includex(TEST/a,num=1:2,titlestr=title)
// h1 タイトルに TITLE: があれば使用。なければページ名...
<h1>[[テストページa>TEST/a]]</h1>
Contents of TOP section
**AA
#includex(TEST/a,num=1:2,titlestr=title,titlelink=off) ...
<h1>テストページa</h1>
Contents of TOP section
**AA
#includex(TEST/a,num=1:2,permalink=パーマリンク) // ブ...
<h1>[[テストページa>TEST/a]]</h1>
Contents of TOP section
**AA
[[パーマリンク>TEST/a]]
#includex(TEST/a,filter=B) // grep 的抜き出し
<h1>[[テストページa>TEST/a]]</h1>
*B
Contents of B section
***BBB
Contents of BBB section
**BC
Contents of BC section
#includex(TEST/a,except=B) // grep -v 的抜き出し
<h1>[[テストページa>TEST/a]]</h1>
Contents of TOP section
**AA
Contents of AA section
#contentsx
*D
Contents of D section
#includex(TEST/a,section=(num=0:1)) // セクション抜き出し
0番セクションがページ先頭から第1見出しまで。1番セクショ...
<h1>[[テストページa>TEST/a]]</h1>
Contents of TOP section
**AA
[[パーマリンク>TEST/a]]
#includex(TEST/a,section=(depth=1)) // 見出しの深さでセ...
<h1>[[テストページa>TEST/a]]</h1>
*B
Contents of B section
*D
Contents of D section
#includex(TEST/a,section=(depth=1),firsthead=off) // 先...
<h1>[[テストページa>TEST/a]]</h1>
Contents of B section
*D
Contents of D section
***ダウンロード [#sf519016]
- includex.inc.php: [[github.com:hai-fun/pukiwiki-plugin/...
//https://drive.google.com/file/d/1fMUfeNA-f_FafC_Nnp...
-- v1.6 PHP8.0対応 2021-12-15 byはいふん
-- v1.7 PHP7/8修正 2022-05-21 byはいふ
*Add [#z1e7cf00]
#includex(全日本女優年鑑別館/Audition/モモコクラブ,title...
#includex(北國書林/お宝推薦/ma,titlelink=off,section=(nu...
終了行:
[[第四演出室]]
*includex.inc.php [#na26a94b]
#includex(戦術逆引き1,section=(filter=^感電$),titlestr=o...
////
https: //wikiwiki.jp/touko_hip/HipBox/includex#c28c1297
*書式 [#o067e0ea]
#includex(ページ名[,オプション])
必須
ページ名
とりこむページ名
オプション
option=bool なオプションは共通して、 option, option=true...
num=数字
表示件数指定。正数は前からN件目、負数は後ろからN件目の...
num=1:10 で先頭1件目から10件目までの意味。num=-10:-1 ...
filter/except などの絞込みオプションと併用した場合、絞込...
filter=正規表現
各行を正規表現で限定する。Wikiソースに対する grep 的なも...
ヒント: ereg で判定を行います。
except=正規表現
除外全文検索。Wikiソースに対する grep -v 的なもの。
ヒント: ereg で判定を行います。 except=Test|sample → Te...
ヒント:例えばページの1部だけを取り込んでいるのに #cont...
titlestr=name | off | basename | relname | title
ページタイトル(<h1>ページ名</h1>)の表示形式。デフォル...
name|pagename|absolute: include プラグインと同じくページ...
off: ページタイトルを表示しない。
basename: ページ名の basename, つまり仮想階層を使用して...
relname|relative: 現在ページからの相対的ページ名。例:現...
title: TITLE: 行があればその文字を、なければ name を表示。
備考:TITLE: の取得には contentsx.inc.php のコードを再利...
titlelink=bool
ページタイトル(<h1>ページ名</h1>)でリンクを貼るか否か。
ヒント: pukiwiki.ini.php で $fixed_heading_edited を 1 ...
section=(contentsxオプション)
取り込むセクションを見出しに対する制限で指定。例えば、se...
セクション番号の定義
0 - 先頭から第一見出し直前までの部位
1 - 第一見出しから第二見出し直前まで
2 - 以下進む
num 以外でも contentsx のオプションを使用することによっ...
num=数字
depth=数字
filter=正規表現
except=正規表現
cache=bool
等。上述同名オプションで想像が付くとは思いますが、詳しく...
firsthead=bool
先頭行が見出しの場合、それも表示するか否か。<h1>ページタ...
readmore=until | from
until - #readmore プラグイン(同プラグインパッケージに梱...
from - #readmore から取り込む
permalink=リンク文字列
include した後にそのページへのリンク、 Permalink を表示...
動作例(仕様)
TEST/a というページが以下の内容で存在するとします。
Contents of TOP section
**AA
Contents of AA section
#contentsx
*B
Contents of B section
***BBB
Contents of BBB section
**BC
Contents of BC section
*D
Contents of D section
このページを TEST ページから include するものとします。
下記の表示例はイメージです。リンクを PukiWiki のように [...
※TITLE: というのは PukiWiki Plus! で <title></title を設...
#includex(TEST/a)
#includex(./a) // 相対階層指定。
PukiWiki の相対階層指定は UNIX とは異なることに注意。TES...
<h1>[[テストページa>TEST/a]]</h1>
Contents of TOP section
**AA
Contents of AA section
#contentsx
*B
Contents of B section
***BBB
Contents of BBB section
**BC
Contents of BC section
*D
Contents of D section
#includex(TEST/a,num=1:2) // 1行目から2行目抜き出し
<h1>[[テストページa>TEST/a]]</h1>
Contents of TOP section
**AA
#includex(TEST/a,num=1:2,titlestr=name) // h1 タイトルに...
<h1>[[Test/a>TEST/a]]</h1>
Contents of TOP section
**AA
#includex(TEST/a,num=1:2,titlestr=off) // h1 タイトルを...
Contents of TOP section
**AA
#includex(TEST/a,num=1:2,titlestr=basename)
// h1 タイトルにページ名の basename, つまり仮想階層を使...
<h1>[[a>TEST/a]]</h1>
Contents of TOP section
**AA
#includex(TEST/a,num=1:2,titlestr=relname) // h1 タイト...
<h1>[[a>TEST/a]]</h1>
Contents of TOP section
**AA
#includex(TEST/a,num=1:2,titlestr=title)
// h1 タイトルに TITLE: があれば使用。なければページ名...
<h1>[[テストページa>TEST/a]]</h1>
Contents of TOP section
**AA
#includex(TEST/a,num=1:2,titlestr=title,titlelink=off) ...
<h1>テストページa</h1>
Contents of TOP section
**AA
#includex(TEST/a,num=1:2,permalink=パーマリンク) // ブ...
<h1>[[テストページa>TEST/a]]</h1>
Contents of TOP section
**AA
[[パーマリンク>TEST/a]]
#includex(TEST/a,filter=B) // grep 的抜き出し
<h1>[[テストページa>TEST/a]]</h1>
*B
Contents of B section
***BBB
Contents of BBB section
**BC
Contents of BC section
#includex(TEST/a,except=B) // grep -v 的抜き出し
<h1>[[テストページa>TEST/a]]</h1>
Contents of TOP section
**AA
Contents of AA section
#contentsx
*D
Contents of D section
#includex(TEST/a,section=(num=0:1)) // セクション抜き出し
0番セクションがページ先頭から第1見出しまで。1番セクショ...
<h1>[[テストページa>TEST/a]]</h1>
Contents of TOP section
**AA
[[パーマリンク>TEST/a]]
#includex(TEST/a,section=(depth=1)) // 見出しの深さでセ...
<h1>[[テストページa>TEST/a]]</h1>
*B
Contents of B section
*D
Contents of D section
#includex(TEST/a,section=(depth=1),firsthead=off) // 先...
<h1>[[テストページa>TEST/a]]</h1>
Contents of B section
*D
Contents of D section
***ダウンロード [#sf519016]
- includex.inc.php: [[github.com:hai-fun/pukiwiki-plugin/...
//https://drive.google.com/file/d/1fMUfeNA-f_FafC_Nnp...
-- v1.6 PHP8.0対応 2021-12-15 byはいふん
-- v1.7 PHP7/8修正 2022-05-21 byはいふ
*Add [#z1e7cf00]
#includex(全日本女優年鑑別館/Audition/モモコクラブ,title...
#includex(北國書林/お宝推薦/ma,titlelink=off,section=(nu...
ページ名: