Preview
Link Preview
Spain attacks: Isis claims responsibility for Cambrils car rampage after Barcelona atrocity
Isis has claimed responsibility for the terrorist attack in Cambrils, Spain, in an official communique. It had already claimed the prior attack in Barcelona but put out an official statement later encompassing both atrocities, which police in Spain had been treating as linked. It came as Spanish authorities announced they believed the cell behind the twin attacks in Cambrils and La Rambla, Barcelona, had been "dismantled".
Isis has claimed responsibility for the terrorist attack in Cambrils, Spain, in an official communique. It had already claimed the prior attack in Barcelona but put out an official statement later encompassing both atrocities, which police in Spain had been treating as linked. It came as Spanish authorities announced they believed the cell behind the twin attacks in Cambrils and La Rambla, Barcelona, had been "dismantled".

Issue #5
Missing photo captions in the photo gallery.
- Vladimir Kuzmin
- Images and captions are stored in diffirent <ul> elements. Each <li> element has its unique id. So image with id=1 is linked to a caption with the same id. I have no idea how to put each <li> from caption <ul> to corresponding image <ul>. Is it even possible?
- Accepted by admin
- Generally, it's not possible to attach the image li with the caption li by ID. However, both lists use the same order, which can allow these captions to be supported in the IV format.
For example, @prepend_to can be used to move the imgs, in order, to their corresponding captions.
Here is some sample code:
@prepend_to("./ancestor::div[@class=\"full-gallery\"]//ul[@class=\"legends\"]//figure[not(.//img)]"): //div[@class="full-gallery"]//div[@class="images"]/ul/img
After the first img moves into the first figure (that already contains the first figcaption), the second img would move into the first figure that does not already contain an img (the second figure).
This way img order and caption order will be preserved and they can be successfully merged together.
- Type of issue
- Submitted via the Previews bot
- Reported
- Aug 20, 2017