Skip to content

Commit 5d364e0

Browse files
committed
[DOXIA-617] support yaml metadata
1 parent a1ad9b5 commit 5d364e0

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed

doxia-modules/doxia-module-markdown/src/main/java/org/apache/maven/doxia/module/markdown/MarkdownParser.java

+7
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,13 @@ CharSequence toHtml( Reader source )
189189
html.append( "<html>" );
190190
html.append( "<head>" );
191191

192+
// detect yaml style metadata
193+
if ( text.startsWith( "---" ) )
194+
{
195+
// remove the enclosing --- to get back to classical metadata
196+
text = text.replaceFirst( "---", "" ).replaceFirst( "---", "" );
197+
}
198+
192199
// First, we interpret the "metadata" section of the document and add the corresponding HTML headers
193200
Matcher metadataMatcher = METADATA_SECTION_PATTERN.matcher( text );
194201
boolean haveTitle = false;

doxia-modules/doxia-module-markdown/src/test/java/org/apache/maven/doxia/module/markdown/MarkdownParserTest.java

+18-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,24 @@ public void testNumberedListSinkEvent()
300300
public void testMetadataSinkEvent()
301301
throws Exception
302302
{
303-
List<SinkEventElement> eventList = parseFileToEventTestingSink( "metadata" ).getEventList();
303+
testMetadataSinkEvent( "metadata" );
304+
}
305+
306+
/**
307+
* Assert the metadata is passed through when parsing "metadata-yaml.md".
308+
*
309+
* @throws Exception if the event list is not correct when parsing the document
310+
*/
311+
public void testMetadataYamlSinkEvent()
312+
throws Exception
313+
{
314+
testMetadataSinkEvent( "metadata-yaml" );
315+
}
316+
317+
private void testMetadataSinkEvent( String doc )
318+
throws Exception
319+
{
320+
List<SinkEventElement> eventList = parseFileToEventTestingSink( doc ).getEventList();
304321
Iterator<SinkEventElement> it = eventList.iterator();
305322

306323
assertEquals( it, "head", "title", "text", "text", "text", "title_", "author", "text", "author_", "date", "text", "date_",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: A Title & a 'Test'
3+
author: Somebody 'Nickname' Great <[email protected]>
4+
date: 2013 © Copyleft
5+
keywords: maven,doxia,markdown
6+
---
7+
8+
# The document with look-alike header
9+
10+
copyright: none
11+
12+
## A subheading
13+
14+
Some more text

0 commit comments

Comments
 (0)