[
https://issues.apache.org/jira/browse/WICKET-7036?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17705272#comment-17705272
]
ASF GitHub Bot commented on WICKET-7036:
----------------------------------------
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>
```
> Extend MarkupFactory, so that additional MarkupFilters for MarkupParser can
> be added
> ------------------------------------------------------------------------------------
>
> Key: WICKET-7036
> URL: https://issues.apache.org/jira/browse/WICKET-7036
> Project: Wicket
> Issue Type: Improvement
> Reporter: Hans Schäfer
> Priority: Minor
>
> Its intended to add additional MarkupFilters to a MarkupParser. But until now
> there is no possibility to configure the MarkupFactory, so that it creates
> MarkupParsers with additional MarkupFilters. Please add this functionality.
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)