extractRecords=extractLinksWithText"(//aside[@class='widget widget_maxmegamenu']//a[@class='mega-menu-link'])[1]"-- pary adres-tytuł podstrony
>>>first(extractLinksWithText"(//aside[@class='widget widget_maxmegamenu']//a[@class='mega-menu-link'])[1]")-- pobieramy podstronę i kolejne podstrony z menu
>>>first(first(extractNestedLinksWithText"//big/a[contains(@href,'.pdf')][img]"))-- pobieramy stronę z adresu URL i wyciągamy linki z tej strony pasujące do wyrażenia XPathowego
-- ostatecznie wyjdą krotki (((adres URL, tytuł nr-u), tytuł podstrony 2), tytuł podstrony 1)
(a',b')<-(extractLinksWithText"(//aside[@class='widget widget_maxmegamenu']//a[@class='mega-menu-link'])[1]")-<a-- pobieramy podstronę i kolejne podstrony z menu
a''<-(extractNestedLinksWithText"//big/a[contains(@href,'.pdf')][img]")-<a'-- pobieramy stronę z adresu URL i wyciągamy linki z tej strony pasujące do wyrażenia XPathowego
returnA-<a''
-- ostatecznie wyjdą krotki (((adres URL, tytuł nr-u), tytuł podstrony 2), tytuł podstrony 1)