Author: ltheussl
Date: Tue May 17 06:44:05 2011
New Revision: 1104018

URL: http://svn.apache.org/viewvc?rev=1104018&view=rev
Log:
[DOXIA-426] add markdown module
Submitted by: Julien Nicoulaud

Added:
    maven/sandbox/trunk/doxia/doxia-module-markdown/   (with props)
    maven/sandbox/trunk/doxia/doxia-module-markdown/pom.xml
    maven/sandbox/trunk/doxia/doxia-module-markdown/src/
    maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/
    maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/
    maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/
    maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/
    
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/
    
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/
    
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/
    
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/
    
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownParseException.java
    
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownParser.java
    
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownSink.java
    
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownSinkFactory.java
    
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownSiteModule.java
    maven/sandbox/trunk/doxia/doxia-module-markdown/src/site/
    maven/sandbox/trunk/doxia/doxia-module-markdown/src/site/site.xml
    maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/
    maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/java/
    maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/java/org/
    maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/java/org/apache/
    
maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/java/org/apache/maven/
    
maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/java/org/apache/maven/doxia/
    
maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/java/org/apache/maven/doxia/module/
    
maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/java/org/apache/maven/doxia/module/markdown/
    
maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/java/org/apache/maven/doxia/module/markdown/MarkdownParserTest.java
    maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/resources/
    maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/resources/test.md
Modified:
    maven/sandbox/trunk/doxia/pom.xml

Propchange: maven/sandbox/trunk/doxia/doxia-module-markdown/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue May 17 06:44:05 2011
@@ -0,0 +1 @@
+target

Added: maven/sandbox/trunk/doxia/doxia-module-markdown/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/doxia/doxia-module-markdown/pom.xml?rev=1104018&view=auto
==============================================================================
--- maven/sandbox/trunk/doxia/doxia-module-markdown/pom.xml (added)
+++ maven/sandbox/trunk/doxia/doxia-module-markdown/pom.xml Tue May 17 06:44:05 
2011
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <artifactId>doxia-modules</artifactId>
+        <groupId>org.apache.maven.doxia</groupId>
+        <version>1.3-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>doxia-module-markdown</artifactId>
+
+    <name>Doxia :: Markdown Module</name>
+    <description>
+        A Doxia module for Markdown source documents.
+    </description>
+    
<url>http://maven.apache.org/doxia/doxia/doxia-modules/doxia-module-markdown/</url>
+
+    <developers>
+        <developer>
+            <id>nicoulaj</id>
+            <name>Julien Nicoulaud</name>
+            <email>[email protected]</email>
+            <timezone>+1</timezone>
+            <url>http://www.twitter.com/nicoulaj</url>
+        </developer>
+    </developers>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.pegdown</groupId>
+            <artifactId>pegdown</artifactId>
+            <version>0.9.2</version>
+        </dependency>
+    </dependencies>
+
+</project>

Added: 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownParseException.java
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownParseException.java?rev=1104018&view=auto
==============================================================================
--- 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownParseException.java
 (added)
+++ 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownParseException.java
 Tue May 17 06:44:05 2011
@@ -0,0 +1,47 @@
+package org.apache.maven.doxia.module.markdown;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import org.apache.maven.doxia.parser.ParseException;
+
+/**
+ * Encapsulate a Markdown document parse error.
+ *
+ * @author Julien Nicoulaud <[email protected]>
+ * @since 1.3
+ */
+public class MarkdownParseException extends ParseException
+{
+
+    /**
+     * Build a new instance of {@link MarkdownParseException} with the 
specified detail message and cause.
+     * <br/>
+     * <b>Note</b>: no line or column number will be used.
+     *
+     * @param message The detailed message.
+     *                This can later be retrieved by the 
<code>Throwable.getMessage()</code> method.
+     * @param e       the cause. This can be retrieved later by the 
<code>Throwable.getCause()</code> method.
+     *                (A null value is permitted, and indicates that the cause 
is nonexistent or unknown.)
+     */
+    public MarkdownParseException(String message, Exception e)
+    {
+        super(message, e);
+    }
+}

Added: 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownParser.java
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownParser.java?rev=1104018&view=auto
==============================================================================
--- 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownParser.java
 (added)
+++ 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownParser.java
 Tue May 17 06:44:05 2011
@@ -0,0 +1,67 @@
+package org.apache.maven.doxia.module.markdown;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import org.apache.maven.doxia.parser.AbstractTextParser;
+import org.apache.maven.doxia.sink.Sink;
+import org.codehaus.plexus.util.IOUtil;
+import org.pegdown.Extensions;
+import org.pegdown.PegDownProcessor;
+
+import java.io.IOException;
+import java.io.Reader;
+
+/**
+ * Implementation of {@link org.apache.maven.doxia.parser.Parser} for Markdown 
documents.
+ * <p/>
+ * Defers parsing to the <a href="http://pegdown.org";>PegDown library</a>.
+ *
+ * @author Julien Nicoulaud <[email protected]>
+ * @plexus.component role="org.apache.maven.doxia.parser.Parser" 
role-hint="markdown"
+ * @since 1.3
+ */
+public class MarkdownParser extends AbstractTextParser
+{
+
+    /**
+     * The role hint for the {@link MarkdownParser} Plexus component.
+     */
+    public static final String ROLE_HINT = "markdown";
+
+    /**
+     * The {@link PegDownProcessor} used to convert Pegdown documents to HTML.
+     */
+    protected static final PegDownProcessor PEGDOWN_PROCESSOR = new 
PegDownProcessor(Extensions.ALL & ~Extensions.HARDWRAPS);
+
+    /**
+     * {@inheritDoc}
+     */
+    public void parse(Reader reader, Sink sink) throws MarkdownParseException
+    {
+        try
+        {
+            
sink.rawText(PEGDOWN_PROCESSOR.markdownToHtml(IOUtil.toString(reader)));
+        }
+        catch (IOException e)
+        {
+            throw new MarkdownParseException("Failed reading Markdown source 
document", e);
+        }
+    }
+}

Added: 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownSink.java
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownSink.java?rev=1104018&view=auto
==============================================================================
--- 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownSink.java
 (added)
+++ 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownSink.java
 Tue May 17 06:44:05 2011
@@ -0,0 +1,32 @@
+package org.apache.maven.doxia.module.markdown;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import org.apache.maven.doxia.sink.AbstractTextSink;
+
+/**
+ * {@link org.apache.maven.doxia.sink.Sink} for Markdown documents.
+ *
+ * @author Julien Nicoulaud <[email protected]>
+ * @since 1.3
+ */
+public class MarkdownSink extends AbstractTextSink
+{
+}

Added: 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownSinkFactory.java
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownSinkFactory.java?rev=1104018&view=auto
==============================================================================
--- 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownSinkFactory.java
 (added)
+++ 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownSinkFactory.java
 Tue May 17 06:44:05 2011
@@ -0,0 +1,45 @@
+package org.apache.maven.doxia.module.markdown;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import org.apache.maven.doxia.sink.AbstractTextSinkFactory;
+import org.apache.maven.doxia.sink.Sink;
+
+import java.io.Writer;
+
+/**
+ * {@link org.apache.maven.doxia.sink.SinkFactory} for {@link MarkdownSink}.
+ *
+ * @author Julien Nicoulaud <[email protected]>
+ * @plexus.component role="org.apache.maven.doxia.sink.SinkFactory" 
role-hint="markdown"
+ * @since 1.3
+ */
+public class MarkdownSinkFactory extends AbstractTextSinkFactory
+{
+
+    /**
+     * {@inheritDoc}
+     */
+    @Override
+    protected Sink createSink(Writer writer, String encoding)
+    {
+        return new MarkdownSink();
+    }
+}

Added: 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownSiteModule.java
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownSiteModule.java?rev=1104018&view=auto
==============================================================================
--- 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownSiteModule.java
 (added)
+++ 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownSiteModule.java
 Tue May 17 06:44:05 2011
@@ -0,0 +1,51 @@
+package org.apache.maven.doxia.module.markdown;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import org.apache.maven.doxia.module.site.AbstractSiteModule;
+
+/**
+ * {@link org.apache.maven.doxia.module.site.SiteModule} for Markdown.
+ *
+ * @author Julien Nicoulaud <[email protected]>
+ * @plexus.component role="org.apache.maven.doxia.module.site.SiteModule" 
role-hint="markdown"
+ * @since 1.3
+ */
+public class MarkdownSiteModule extends AbstractSiteModule
+{
+
+    /**
+     * The source directory for Markdown files.
+     */
+    public static final String SOURCE_DIRECTORY = "markdown";
+
+    /**
+     * The extension for Markdown files.
+     */
+    public static final String FILE_EXTENSION = "md";
+
+    /**
+     * Build a new instance of {@link MarkdownSiteModule}.
+     */
+    public MarkdownSiteModule()
+    {
+        super(SOURCE_DIRECTORY, FILE_EXTENSION, MarkdownParser.ROLE_HINT);
+    }
+}

Added: maven/sandbox/trunk/doxia/doxia-module-markdown/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/doxia/doxia-module-markdown/src/site/site.xml?rev=1104018&view=auto
==============================================================================
--- maven/sandbox/trunk/doxia/doxia-module-markdown/src/site/site.xml (added)
+++ maven/sandbox/trunk/doxia/doxia-module-markdown/src/site/site.xml Tue May 
17 06:44:05 2011
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+ -->
+
+<project name="markdown" xmlns="http://maven.apache.org/DECORATION/1.0.0";
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+         xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 
http://maven.apache.org/xsd/decoration-1.0.0.xsd";>
+
+    <body>
+
+        <menu ref="parent"/>
+
+        <menu ref="reports"/>
+
+    </body>
+
+</project>
\ No newline at end of file

Added: 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/java/org/apache/maven/doxia/module/markdown/MarkdownParserTest.java
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/java/org/apache/maven/doxia/module/markdown/MarkdownParserTest.java?rev=1104018&view=auto
==============================================================================
--- 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/java/org/apache/maven/doxia/module/markdown/MarkdownParserTest.java
 (added)
+++ 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/java/org/apache/maven/doxia/module/markdown/MarkdownParserTest.java
 Tue May 17 06:44:05 2011
@@ -0,0 +1,66 @@
+package org.apache.maven.doxia.module.markdown;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import org.apache.maven.doxia.parser.AbstractParserTest;
+import org.apache.maven.doxia.parser.Parser;
+
+/**
+ * Tests for {@link MarkdownParser}.
+ *
+ * @author Julien Nicoulaud <[email protected]>
+ * @since 1.3
+ */
+public class MarkdownParserTest extends AbstractParserTest
+{
+
+    /**
+     * The {@link MarkdownParser} used for the tests.
+     */
+    protected MarkdownParser parser;
+
+    /**
+     * {@inheritDoc}
+     */
+    @Override
+    protected void setUp() throws Exception
+    {
+        super.setUp();
+        parser = (MarkdownParser) lookup(Parser.ROLE, 
MarkdownParser.ROLE_HINT);
+    }
+
+    /**
+     * {@inheritDoc}
+     */
+    @Override
+    protected Parser createParser()
+    {
+        return parser;
+    }
+
+    /**
+     * {@inheritDoc}
+     */
+    @Override
+    protected String outputExtension()
+    {
+        return MarkdownSiteModule.FILE_EXTENSION;
+    }
+}

Added: 
maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/resources/test.md
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/resources/test.md?rev=1104018&view=auto
==============================================================================
--- maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/resources/test.md 
(added)
+++ maven/sandbox/trunk/doxia/doxia-module-markdown/src/test/resources/test.md 
Tue May 17 06:44:05 2011
@@ -0,0 +1,10 @@
+Lorem ipsum
+===========
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus lacus est, 
suscipit quis mattis ac,
+semper eget libero. Aenean quis faucibus lorem. Fusce et mollis risus. Integer 
dignissim, nisl sed varius
+cursus, nunc nisi **aliquet turpis, nec ultricies** sem velit vitae eros. Cras 
hendrerit condimentum massa a
+luctus. Morbi consequat rhoncus pellentesque. Donec vehicula aliquet diam, vel 
pharetra nisl placerat eu.
+In ac nisi erat, sed *commodo risus*. Nulla lacinia purus nec augue malesuada 
tincidunt. Vestibulum sit amet
+purus elit, ut accumsan turpis. Nunc a sem ipsum. Mauris nisl ipsum, fringilla 
a vulputate a, hendrerit in
+magna. Mauris viverra gravida lacus.

Modified: maven/sandbox/trunk/doxia/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/doxia/pom.xml?rev=1104018&r1=1104017&r2=1104018&view=diff
==============================================================================
--- maven/sandbox/trunk/doxia/pom.xml (original)
+++ maven/sandbox/trunk/doxia/pom.xml Tue May 17 06:44:05 2011
@@ -33,6 +33,7 @@ under the License.
   <modules>
     <module>doxia-editor</module>
     <!--<module>doxia-ide</module>-->
+    <module>doxia-module-markdown</module>
     <module>doxia-module-mediawiki</module>
     <module>doxia-module-xwiki</module>
     <module>doxia-review</module>


Reply via email to