From 0f4588edbb4c93fd5eff6b1fab7e639ee4257495 Mon Sep 17 00:00:00 2001 From: Slava Leleka Date: Wed, 16 Aug 2023 13:18:06 +0300 Subject: [PATCH] Update description --- src/scriptlets/xml-prune.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scriptlets/xml-prune.js b/src/scriptlets/xml-prune.js index 6930c4e9..6f567d7d 100644 --- a/src/scriptlets/xml-prune.js +++ b/src/scriptlets/xml-prune.js @@ -59,7 +59,8 @@ import { * example.org#%#//scriptlet('xml-prune', 'Period[id*="-ad-"]', '', '.mpd') * ``` * - * 1. Remove `Period` tag whose `id` contains `pre-roll` and remove `duration` attribute from the `Period` tag by using XPath expression + * 1. Remove `Period` tag whose `id` contains `pre-roll` and remove `duration` attribute from the `Period` tag + * by using XPath expression * * ```adblock * example.org#%#//scriptlet('xml-prune', 'xpath(//*[name()="Period"][contains(@id, "pre-roll") and contains(@id, "-ad-")] | //*[name()="Period"]/@duration)')