[ 
https://jira.codehaus.org/browse/DOXIA-488?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Charles Salmon updated DOXIA-488:
---------------------------------

    Attachment: DOXIA-488.patch

The patch with the changes and the unit test
                
> Support optional langage for syntax highlighting
> ------------------------------------------------
>
>                 Key: DOXIA-488
>                 URL: https://jira.codehaus.org/browse/DOXIA-488
>             Project: Maven Doxia
>          Issue Type: Bug
>          Components: Module - Markdown
>    Affects Versions: 1.3
>            Reporter: Charles Salmon
>            Priority: Trivial
>         Attachments: DOXIA-488.patch
>
>
> pegdown supports the way to specify the langage for a code block:
> {noformat}
> ~~~langage
> code
> ~~~
> {noformat}
> Following the resolution of DOXIA-484 (pegdown dependency update), we should 
> make sure the overrided {code:java}public void visit( VerbatimNode node ) 
> {code} of the {code:java}MarkdownToDoxiaHtmlSerializer{code} includes the 
> support of langage option, ie:
> {code:java}
>      /**
>       * {@inheritDoc}
>       */
>      @Override
>      public void visit( VerbatimNode node )
>      {
>         printer.println().print("<div class=\"source\"><pre>");
>         if (!StringUtils.isEmpty(node.getType())) {
>             printAttribute("class", node.getType());
>         }
>         printer.print(">");
>         ...
>      }
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to