jspwiki-wysiwyg/src/main/java/org/apache/wiki/htmltowiki/syntax/jspwiki/JSPWikiADecorator.java [60:70]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void linkMarkup( final Element e, final String ref, final String additionalAttrs ) throws JDOMException {
        // If the ref has the same value as the text and also if there
        // are attributes, then just print: [ref|ref|attributes].
        out.print( "[" );
        chain.translate( e );
        out.print( "|" );
        MarkupHelper.printUnescaped( out, ref );
        out.print( "|" );
        out.print( additionalAttrs );
        out.print( "]" );
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



jspwiki-markdown/src/main/java/org/apache/wiki/htmltowiki/syntax/markdown/MarkdownADecorator.java [60:70]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void linkMarkup( final Element e, final String ref, final String additionalAttrs ) throws JDOMException {
        // If the ref has the same value as the text and also if there
        // are attributes, then just print: [ref](ref){attributes}.
        out.print( "[" );
        chain.translate( e );
        out.print( "](" );
        MarkupHelper.printUnescaped( out, ref );
        out.print( "){" );
        out.print( additionalAttrs );
        out.print( "}" );
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



