You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "theigl (via GitHub)" <gi...@apache.org> on 2023/03/27 09:56:15 UTC

[GitHub] [wicket] theigl commented on pull request #564: WICKET-7036: MarkupFactory supports IMarkupFilters

theigl commented on PR #564:
URL: https://github.com/apache/wicket/pull/564#issuecomment-1484847931

   Is this really necessary?
   
   The Javadoc for `MarkupFactory` reads:
   
   ```java
   * MarkupParser's can be extended by means of {@link IMarkupFilter}. You can add your own filter
   * as follows:
   * 
   * <pre>
   *    public MyMarkupFactory {
   *      ...
   *      public MarkupParser newMarkupParser(final MarkupResourceStream resource) {
   *         MarkupParser parser = super.newMarkupParser(resource);
   *         parser.add(new MyFilter());
   *         return parser;
   *      }
   *    }
   * </pre>
   ```


-- 
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: commits-unsubscribe@wicket.apache.org

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