回答編集履歴

2

マークダウン修正

2015/02/18 03:52

投稿

hogehuga
hogehuga

スコア64

test CHANGED
@@ -8,6 +8,8 @@
8
8
 
9
9
 
10
10
 
11
+ ```lang-php
12
+
11
13
  require_once "Text/Wiki.php";
12
14
 
13
15
  $wiki = new Text_Wiki();
@@ -17,3 +19,5 @@
17
19
  $text = "今日は**''晴れ''**です。";
18
20
 
19
21
  echo $wiki->transform($text, 'xhtml');
22
+
23
+ ```

1

2015/02/18 03:51

投稿

hogehuga
hogehuga

スコア64

test CHANGED
@@ -1,14 +1,12 @@
1
1
  ドキュメントはここから見れますよ。
2
2
 
3
- [http://pear.php.net/package/Text_Wiki/docs/latest/Text_Wiki/Text_Wiki.html#methodtransform](http://pear.php.net/package/Text_Wiki/docs/latest/Text_Wiki/Text_Wiki.html#methodtransform)
3
+ http://pear.php.net/package/Text_Wiki/docs/latest/Text_Wiki/Text_Wiki.html#methodtransform
4
4
 
5
5
 
6
6
 
7
7
  下記に簡単な例を書いておきます。
8
8
 
9
9
 
10
-
11
- ```lang-php
12
10
 
13
11
  require_once "Text/Wiki.php";
14
12
 
@@ -19,5 +17,3 @@
19
17
  $text = "今日は**''晴れ''**です。";
20
18
 
21
19
  echo $wiki->transform($text, 'xhtml');
22
-
23
- ```