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

Robert Scholte updated DOXIA-488:
---------------------------------

    Description: 
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}


  was:
pegdown supports the way to specify the langage for a code block:
~~~langage
code
~~~

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(">");
        ...
     }



    
> 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
>
> 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