duckscraper/sample.scrap

17 lines
287 B
Text

from http://sid-story.wikia.com/wiki/Album
pages = //section/header/h2/a/@href
end
apply {{test_mustache}} to {{pages}}
struct paragraphs
paragraph = //section/header/h2/a/text()
end
end
==test_mustache
Paragraphs: {{#paragraphs}}
- {{paragraph}}
{{/paragraphs}}
kthx bye!
==end