Skip to content

Commit

Permalink
remove BundleFilter from public API
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshalm committed Aug 20, 2023
1 parent ce6b42c commit e2e9ff6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ trait RenderConfig {
* @param strict indicates that text markup should be interpreted as defined by its specification, without any extensions
* @param acceptRawContent indicates that the users accepts the inclusion of raw content in text markup
*/
case class BundleFilter(strict: Boolean = false, acceptRawContent: Boolean = false) {
private[laika] case class BundleFilter(strict: Boolean = false, acceptRawContent: Boolean = false) {

def apply(bundles: Seq[ExtensionBundle]): Seq[ExtensionBundle] = {
val strictApplied = if (!strict) bundles else bundles.flatMap(_.forStrictMode)
Expand Down

0 comments on commit e2e9ff6

Please sign in to comment.