Showing 2 changed files with 8 additions and 3 deletions
+7 -2
CHANGES
... ...
@@ -1,6 +1,11 @@
1 1
 1.6
2
-  fix bug that can't create collaborator more than one.
3
-  support time zone.
2
+  - fix bug that can't create collaborator more than one.
3
+  - support time zone.
4
+  - change markdown parser from Text::Markdown::Discount to Text::Markdown::Hoedown
5
+    because we want to support fenced code syntax
6
+    ```
7
+    code
8
+    ```
4 9
 1.5
5 10
   - fix bug that git clone via http failed.
6 11
   - show readme file in sub directory.
+1 -1
xt/basic.t
... ...
@@ -439,5 +439,5 @@ note 'Markdown normal file';
439 439
 {
440 440
   # Page access
441 441
   $t->get_ok("/$user/$project/blob/12e44f2e4ecf55c5d3a307889829b47c05e216d3/dir/markdown.md");
442
-  $t->content_like(qr#<h1>Head</h1>#);
442
+  $t->content_like(qr#<h1 .*?>Head</h1>#);
443 443
 }