Извлечение, создание и добавление с использованием xpath и telegram Instant View - PullRequest
0 голосов
/ 20 февраля 2019
<iframe src="https://expmle.com/subdirectory/sample_title" />

Как я могу создать и добавить ниже <a> тег сверху кода, используя XPath и Telegram Instant view функции?

<a href="https://expmle.com/subdirectory/sample_title">sample_title</a>

Я хочу извлечь целые src и последнюю часть этого и использовать их для создания тега <a>.

Буду очень признателен за любые предложения:)

Ответы [ 2 ]

0 голосов
/ 23 февраля 2019
# append <a> tag below
@after(<a>, href, ./@src, content, ./@src): //iframe

# take everything after the last slash
@match("[^\/]+$", "1"): $@/@content

# move the attribute inside the tag
@append(@content): $@

Если последний $@ не будет работать, просто определите переменную для <a>.

0 голосов
/ 20 февраля 2019

Это должно работать правильно.

<a>: //iframe # Find iframe and convert it to <a>

@set_attr(href, ./@src) # Set href attribute from src

$anchor # Create variable for current <a>
@set_attr(text, ./@href) # We set new attribute for link which will processed by @match function, then @text attribute will be replaced by result of the @match
@match("\\w+_\\w+"): $@/@text # Now we find our future name of the link "sample_name" (this function will replace all in @text by our new name

@prepend(@text): $anchor # And then put this name to his $anchor
...