この文書の現在のバージョンと選択したバージョンの差分を表示します。
両方とも前のリビジョン 前のリビジョン 次のリビジョン | 前のリビジョン | ||
dokuwikiマニュアル [2019/04/02 06:23] ips |
dokuwikiマニュアル [2019/08/24 15:31] (現在) ips |
||
---|---|---|---|
ライン 21: | ライン 21: | ||
</code> | </code> | ||
+ | <WRAP center round tip 90%> | ||
%%コードにタグを埋め込むには<code>ではなく<HTML>か<PHP>を使用する。%% | %%コードにタグを埋め込むには<code>ではなく<HTML>か<PHP>を使用する。%% | ||
HTML、PHPは大文字を使う。 | HTML、PHPは大文字を使う。 | ||
+ | </WRAP> | ||
+ | |||
===== インラインのコード ===== | ===== インラインのコード ===== | ||
ライン 44: | ライン 47: | ||
pastedを選択すると、いままでペイストした画像が表示されるので削除できる。 | pastedを選択すると、いままでペイストした画像が表示されるので削除できる。 | ||
{{:pasted:20190402-062323.png}} | {{:pasted:20190402-062323.png}} | ||
+ | |||
+ | ===== Wrap Plugin ===== | ||
+ | Wrap Pluginを使っているので色々な装飾ができる。 | ||
+ | 編集画面のボックスをクリックすると、装飾方法が表示される。 | ||
+ | {{:pasted:20190824-142813.png}} | ||
+ | |||
+ | ==== ハイライト ==== | ||
+ | |||
+ | <code> | ||
+ | <wrap hi>ハイライト</wrap> | ||
+ | <wrap lo>目立たせない</wrap> | ||
+ | <wrap em>強調</wrap> | ||
+ | </code> | ||
+ | <wrap hi>ハイライト</wrap> | ||
+ | <wrap lo>目立たせない</wrap> | ||
+ | <wrap em>強調</wrap> | ||
+ | |||
+ | ==== 枠 ==== | ||
+ | |||
+ | <HTML> | ||
+ | <WRAP center round box 60%> | ||
+ | 中央配置枠 | ||
+ | </WRAP> | ||
+ | </HTML> | ||
+ | |||
+ | <WRAP center round box 60%> | ||
+ | 中央配置枠 | ||
+ | </WRAP> | ||
+ | |||
+ | <HTML> | ||
+ | <WRAP center round info 60%> | ||
+ | 情報枠 | ||
+ | </WRAP> | ||
+ | </HTML> | ||
+ | |||
+ | <WRAP center round info 60%> | ||
+ | 情報枠 | ||
+ | </WRAP> | ||
+ | |||
+ | <HTML> | ||
+ | <WRAP center round tip 60%> | ||
+ | ヒント枠 | ||
+ | </WRAP> | ||
+ | </HTML> | ||
+ | |||
+ | <WRAP center round tip 60%> | ||
+ | ヒント枠 | ||
+ | </WRAP> | ||
+ | |||
+ | <HTML> | ||
+ | <WRAP center round important 60%> | ||
+ | 重要枠 | ||
+ | </WRAP> | ||
+ | </HTML> | ||
+ | |||
+ | <WRAP center round important 60%> | ||
+ | 重要枠 | ||
+ | </WRAP> | ||
+ | |||
+ | <HTML> | ||
+ | <WRAP center round alert 60%> | ||
+ | 警告枠 | ||
+ | </WRAP> | ||
+ | </HTML> | ||
+ | |||
+ | <WRAP center round alert 60%> | ||
+ | 警告枠 | ||
+ | </WRAP> | ||
+ | |||
+ | <HTML> | ||
+ | <WRAP center round help 60%> | ||
+ | ヘルプ枠 | ||
+ | </WRAP> | ||
+ | </HTML> | ||
+ | |||
+ | <WRAP center round help 60%> | ||
+ | ヘルプ枠 | ||
+ | </WRAP> | ||
+ | <HTML> | ||
+ | <WRAP center round download 60%> | ||
+ | ダウンロード枠 | ||
+ | </WRAP> | ||
+ | </HTML> | ||
+ | |||
+ | <WRAP center round download 60%> | ||
+ | ダウンロード枠 | ||
+ | </WRAP> | ||
+ | |||
+ | <HTML> | ||
+ | <WRAP center round todo 60%> | ||
+ | TODO枠 | ||
+ | </WRAP> | ||
+ | </HTML> | ||
+ | |||
+ | <WRAP center round todo 60%> | ||
+ | TODO枠 | ||
+ | </WRAP> | ||
+ | |||
+ | ===== UML ===== | ||
+ | |||
+ | <HTML> | ||
+ | <uml> | ||
+ | title Iterator | ||
+ | |||
+ | interface Aggregate{ | ||
+ | createIterator() | ||
+ | } | ||
+ | |||
+ | interface Iterator{ | ||
+ | +hasNext() | ||
+ | +next() | ||
+ | } | ||
+ | |||
+ | class BookShelf{ | ||
+ | createIterator(this) | ||
+ | } | ||
+ | |||
+ | class BookShelfIterator{ | ||
+ | BookShelf | ||
+ | +hasNext() | ||
+ | +next() | ||
+ | } | ||
+ | |||
+ | Aggregate -> Iterator : Create | ||
+ | Aggregate <|.. BookShelf | ||
+ | Iterator <|.. BookShelfIterator | ||
+ | BookShelf <-o BookShelfIterator | ||
+ | |||
+ | </uml> | ||
+ | </HTML> | ||
+ | |||
+ | <uml> | ||
+ | title Iterator | ||
+ | |||
+ | interface Aggregate{ | ||
+ | createIterator() | ||
+ | } | ||
+ | |||
+ | interface Iterator{ | ||
+ | +hasNext() | ||
+ | +next() | ||
+ | } | ||
+ | |||
+ | class BookShelf{ | ||
+ | createIterator(this) | ||
+ | } | ||
+ | |||
+ | class BookShelfIterator{ | ||
+ | BookShelf | ||
+ | +hasNext() | ||
+ | +next() | ||
+ | } | ||
+ | |||
+ | Aggregate -> Iterator : Create | ||
+ | Aggregate <|.. BookShelf | ||
+ | Iterator <|.. BookShelfIterator | ||
+ | BookShelf <-o BookShelfIterator | ||
+ | |||
+ | </uml> |