You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2011/10/29 01:05:51 UTC

svn commit: r1190661 - /openejb/site/trunk/lib/path.pm

Author: dblevins
Date: Fri Oct 28 23:05:51 2011
New Revision: 1190661

URL: http://svn.apache.org/viewvc?rev=1190661&view=rev
Log:
tweaked path regex to handle .md or .mdtext

Modified:
    openejb/site/trunk/lib/path.pm

Modified: openejb/site/trunk/lib/path.pm
URL: http://svn.apache.org/viewvc/openejb/site/trunk/lib/path.pm?rev=1190661&r1=1190660&r2=1190661&view=diff
==============================================================================
--- openejb/site/trunk/lib/path.pm (original)
+++ openejb/site/trunk/lib/path.pm Fri Oct 28 23:05:51 2011
@@ -18,10 +18,9 @@ our @patterns = (
       },
     ],
 
-    [qr!README\.md$!, example => { template => "example.html" } ],
-    [qr!README\.mdtext$!, example => { template => "example.html" } ],
+    [qr!README\.md(text)?$!, example => { template => "example.html" } ],
 
-    [qr!\.mdtext$!, basic => { template => "doc.html" } ],
+    [qr!\.md(text)?$!, basic => { template => "doc.html" } ],
 
 );