[[toc]] ---- ++ 総論 The markup described on this page is for the default {{Text_Wiki}} rules; \ it is a combination of the [http://tavi.sourceforge.net WikkTikkiTavi] \ and [http://develnet.org/ coWiki] markup styles. All text is entered as plain text, and will be converted to HTML entities as \ necessary. This means that {{<}}, {{>}}, {{&}}, and so on are converted for \ you (except in special situations where the characters are Wiki markup; \ Text_Wiki is generally smart enough to know when to convert and when not to). Just hit "return" twice to make a paragraph break. If you want \ to keep the same logical line but have to split it across \ two physical lines (such as when your editor only shows a certain number \ of characters per line), end the line with a backslash {{\}} and hit \ return once. This will cause the two lines to be joined on display, and the \ backslash will not show. (If you end a line with a backslash and a tab \ or space, it will ''not'' be joined with the next line, and the backslash \ will be printed.) ---- ++ インライン書式 || {{``//イタリック//``}} || //イタリック// || || {{``**ボールド**``}} || **ボールド** || || {{``//**ボールド&イタリック**//``}} || //**ボールド&イタリック**// || || {{``{{タイプライター体}}``}} || {{タイプライター体}} || || {{``@@--- 打ち消し線 +++ 挿入文 @@``}} || @@--- 打ち消し線 +++ 挿入文 @@ || || {{``@@--- 打ち消し線 @@``}} || @@--- 打ち消し線 @@ || || {{``@@+++ 挿入文 @@``}} || @@+++ 挿入文 @@ || ---- ++ 修飾処理のスキップ If you don't want Text_Wiki to parse some text, enclose it in two backticks (not single-quotes). This //text// gets **parsed**. ``This //text// does not get **parsed**.`` This //text// gets **parsed**. ``This //text// does not get **parsed**.`` ---- ++ 見出し You can make various levels of heading by putting \ equals-signs before and after the text (all on its \ own line): +++ Level 3 Heading ++++ Level 4 Heading +++++ Level 5 Heading ++++++ Level 6 Heading +++ Level 3 Heading ++++ Level 4 Heading +++++ Level 5 Heading ++++++ Level 6 Heading ---- ++ 目次 To create a list of every heading, with a link to that heading, put a table of contents tag on its own line. [[toc]] ---- ++ 水平線 Use four dashes ({{``----``}}) to create a horizontal rule. ---- ++ リスト +++ 記号付リスト You can create bullet lists by starting a paragraph with one or \ more asterisks. * Bullet one * Sub-bullet * Bullet one * Sub-bullet +++ 番号付リスト Similarly, you can create numbered lists by starting a paragraph \ with one or more hashes. # Numero uno # Number two # Sub-item # Numero uno # Number two # Sub-item +++ 番号付リストと記号付リストの混在 You can mix and match bullet and number lists: # Number one * Bullet * Bullet # Number two * Bullet * Bullet * Sub-bullet # Sub-sub-number # Sub-sub-number # Number three * Bullet * Bullet # Number one * Bullet * Bullet # Number two * Bullet * Bullet * Sub-bullet # Sub-sub-number # Sub-sub-number # Number three * Bullet * Bullet +++ 定義文 You can create a definition (description) list with the following syntax: : Item 1 : Something : Item 2 : Something else : Item 1 : Something : Item 2 : Something else ---- ++ 引用文 You can mark a blockquote by starting a line with one or more '>' \ characters, followed by a space and the text to be quoted. This is normal text here. > Indent me! The quick brown fox jumps over the lazy dog. \ Now this the time for all good men to come to the aid of \ their country. Notice how we can continue the block-quote \ in the same "paragraph" by using a backslash at the end of \ the line. > > Another block, leading to... >> Second level of indenting. This second is indented even \ more than the previous one. Back to normal text. This is normal text here. > Indent me! The quick brown fox jumps over the lazy dog. \ Now this the time for all good men to come to the aid of \ their country. Notice how we can continue the block-quote \ in the same "paragraph" by using a backslash at the end of \ the line. > > Another block, leading to... >> Second level of indenting. This second is indented even \ more than the previous one. Back to normal text. ---- ++ リンクと画像 +++ Wiki リンク SmashWordsTogether to create a page link. You can force a WikiPage name '''not''' to be clickable by putting \ an exclamation mark in front of it. WikiPage !WikiPage WikiPage !WikiPage You can create a "described" or "labeled" link to a wiki page by putting the page name in brackets, followed by some text. [WikiPage Descriptive text for the link.] [WikiPage Descriptive text for the link.] > **Note:** existing wiki pages must be in the [RuleWikilink wikilink] {{pages}} configuration, and the [RuleWikilink wikilink] {{view_url}} configuration value must be set for the linking to work. +++ Interwiki リンク Interwiki links are links to pages on other Wiki sites. \ Type the {{``SiteName:PageName``}} like this: * MeatBall:RecentChanges * Advogato:proj/WikkiTikkiTavi * Wiki:WorseIsBetter > **Note:** the interwiki site must be in the [RuleInterwiki interwiki] {{sites}} configuration array. +++ URL Create a remote link simply by typing its URL: http://ciaweb.net. If you like, enclose it in brackets to create a numbered reference \ and avoid cluttering the page; {{``[http://ciaweb.net/free/]``}} becomes [http://ciaweb.net/free/]. Or you can have a described-reference instead of a numbered reference: [http://pear.php.net PEAR] [http://pear.php.net PEAR] +++ 画像 You can put a picture in a page by typing the URL to the picture \ (it must end in gif, jpg, or png). http://c2.com/sig/wiki.gif http://c2.com/sig/wiki.gif You can use the described-reference URL markup to give the image an ALT tag: [http://phpsavant.com/etc/fester.jpg Fester] [http://phpsavant.com/etc/fester.jpg Fester] ---- ++ コードブロック Create code blocks by using {{...}} tags (each on its own line). This is an example code block! To create PHP blocks that get automatically colorized when you use PHP tags, simply surround the code with {{...}} tags (the tags themselves should each be on their own lines, and no need for the {{}} tags). // Set up the wiki options $options = array(); $options['view_url'] = "index.php?page="; // load the text for the requested page $text = implode('', file($page . '.wiki.txt')); // create a Wiki objext with the loaded options $wiki = new Text_Wiki($options); // transform the wiki text. echo $wiki->transform($text); // Set up the wiki options $options = array(); $options['view_url'] = "index.php?page="; // load the text for the requested page $text = implode('', file($page . '.wiki.txt')); // create a Wiki objext with the loaded options $wiki = new Text_Wiki($options); // transform the wiki text. echo $wiki->transform($text); ---- ++ テーブル You can create tables using pairs of vertical bars: || cell one || cell two || |||| big ol' line || || cell four || cell five || || cell six || here's a very long cell || || cell one || cell two || |||| big ol' line || || cell four || cell five || || cell six || here's a very long cell || || lines must start and end || with double vertical bars || nothing || || cells are separated by || double vertical bars || nothing || |||| you can span multiple columns by || starting each cell || || with extra cell |||| separators || |||||| but perhaps an example is the easiest way to see || || lines must start and end || with double vertical bars || nothing || || cells are separated by || double vertical bars || nothing || |||| you can span multiple columns by || starting each cell || || with extra cell |||| separators || |||||| but perhaps an example is the easiest way to see ||