Jotschi commented on PR #161:
URL: https://github.com/apache/maven-doxia/pull/161#issuecomment-1753582952

   The snippet renderer removed unnecessary indentation. It thus moved the code 
block left. A code example which is highly indented will thus not include the 
bogus indentation.
   
   ```java
   {
        {
   snipped-start
                { 
                       // your code 
                }
   snipped-end
         }
   }
   ```
   
   should result in
   
   ```java
   { 
         // your code 
   }
   ```
   
   and not
   
   ```java
                { 
                       // your code 
                }
   ```
   
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to